diff options
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index bea6d40..359afe1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -10,10 +10,6 @@ set(CMAKE_AUTOMOC ON) set(CMAKE_AUTOUIC ON) qt_add_executable(itat_challange_olympics src/main/main.cpp application.qrc - src/api/OlympicsAPI.cpp - src/api/OlympicsAPI.h - src/model/Sport.cpp - src/model/Sport.h ) @@ -23,6 +19,18 @@ qt_add_qml_module(itat_challange_olympics res/gui/application.qml res/gui/EventInfoPage.qml res/gui/EventsPage.qml + + SOURCES + src/model/Competitor.cpp + src/model/Competitor.h + src/model/CompetitorWithResults.cpp + src/model/CompetitorWithResults.h + src/model/EventInfo.cpp + src/model/EventInfo.h + src/model/MedalWinner.cpp + src/model/MedalWinner.h + src/model/Sport.cpp + src/model/Sport.h RESOURCES res/pictograms/ARC_small.svg |