added first part of evaluation realised in Cpp

This commit is contained in:
2018-12-06 23:09:26 +01:00
parent 388084c40e
commit 6c01b76b9c
14 changed files with 875 additions and 55 deletions

View File

@@ -18,6 +18,9 @@ set(CMAKE_AUTOMOC ON)
# Create code from a list of Qt designer ui files
set(CMAKE_AUTOUIC ON)
# uncomment for ATMega based version (needs usb library)
#add_definitions(-DATMEGA)
# Find the QtWidgets library
find_package(Qt5Widgets CONFIG REQUIRED)
@@ -38,12 +41,17 @@ set(helloworld_SRCS
training.cpp
timemodel.cpp
qvectorhelper.cpp
resultmodel.cpp
result.cpp
evaluation.cpp
mainwindow.ui
windowrace.ui
windowssettings.ui
windowrennliste.ui
training.ui
result.ui
evaluation.ui
)
# Tell CMake to create the helloworld executable
add_executable(Rennbahn ${helloworld_SRCS})