diff options
author | Rolf Eike Beer <eike@sf-mail.de> | 2019-03-25 22:47:44 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-03-27 14:07:32 -0700 |
commit | 7635ee3e776f7adb96dda70ea21920569368ae30 (patch) | |
tree | 0def9ccb934b2565765f5713ae3b4bb6a30b8b38 /desktop-widgets/CMakeLists.txt | |
parent | 8526fea973a03724a9121002512fae516c6000ed (diff) | |
download | subsurface-7635ee3e776f7adb96dda70ea21920569368ae30.tar.gz |
CMake: add headers to targets
Signed-off-by: Rolf Eike Beer <eike@sf-mail.de>
Diffstat (limited to 'desktop-widgets/CMakeLists.txt')
-rw-r--r-- | desktop-widgets/CMakeLists.txt | 93 |
1 files changed, 70 insertions, 23 deletions
diff --git a/desktop-widgets/CMakeLists.txt b/desktop-widgets/CMakeLists.txt index 1411e69ba..6227eaac1 100644 --- a/desktop-widgets/CMakeLists.txt +++ b/desktop-widgets/CMakeLists.txt @@ -52,64 +52,107 @@ set (SUBSURFACE_UI # the interface, in C++ set(SUBSURFACE_INTERFACE - updatemanager.cpp + ../map-widget/qmlmapwidgethelper.cpp about.cpp + about.h + command.cpp + command.h + command_base.cpp + command_base.h + command_divelist.cpp + command_divelist.h + configuredivecomputerdialog.cpp + configuredivecomputerdialog.h divecomputermanagementdialog.cpp + divecomputermanagementdialog.h divelistview.cpp + divelistview.h + divelogexportdialog.cpp + divelogexportdialog.h + divelogimportdialog.cpp + divelogimportdialog.h + divepicturewidget.cpp + divepicturewidget.h diveplanner.cpp + diveplanner.h diveshareexportdialog.cpp + diveshareexportdialog.h downloadfromdivecomputer.cpp + downloadfromdivecomputer.h + filterwidget2.cpp + filterwidget2.h findmovedimagesdialog.cpp + findmovedimagesdialog.h + groupedlineedit.cpp + groupedlineedit.h kmessagewidget.cpp + kmessagewidget.h + locationinformation.cpp + locationinformation.h mainwindow.cpp + mainwindow.h mapwidget.cpp - ../map-widget/qmlmapwidgethelper.cpp + mapwidget.h modeldelegates.cpp + modeldelegates.h notificationwidget.cpp + notificationwidget.h + qtwaitingspinner.cpp + qtwaitingspinner.h simplewidgets.cpp + simplewidgets.h starwidget.cpp + starwidget.h subsurfacewebservices.cpp - tableview.cpp - divelogimportdialog.cpp - tagwidget.cpp - groupedlineedit.cpp - divelogexportdialog.cpp - divepicturewidget.cpp - usersurvey.cpp - configuredivecomputerdialog.cpp - command.cpp - command_base.cpp - command_divelist.cpp - locationinformation.cpp - qtwaitingspinner.cpp - filterwidget2.cpp - tab-widgets/TabDiveStatistics.cpp + subsurfacewebservices.h + tab-widgets/TabBase.cpp + tab-widgets/TabBase.h + tab-widgets/TabDiveExtraInfo.cpp + tab-widgets/TabDiveExtraInfo.h tab-widgets/TabDiveInformation.cpp + tab-widgets/TabDiveInformation.h tab-widgets/TabDivePhotos.cpp - tab-widgets/TabDiveExtraInfo.cpp + tab-widgets/TabDivePhotos.h + tab-widgets/TabDiveStatistics.cpp + tab-widgets/TabDiveStatistics.h tab-widgets/maintab.cpp - tab-widgets/TabBase.cpp + tab-widgets/maintab.h + tableview.cpp + tableview.h + tagwidget.cpp + tagwidget.h + updatemanager.cpp + updatemanager.h + usersurvey.cpp + usersurvey.h ) if(NOT NO_USERMANUAL) set(SUBSURFACE_INTERFACE ${SUBSURFACE_INTERFACE} usermanual.cpp + usermanual.h ) endif() if(NOT NO_PRINTING) set(SUBSURFACE_INTERFACE ${SUBSURFACE_INTERFACE} - templateedit.cpp printdialog.cpp - printoptions.cpp + printdialog.h printer.cpp + printer.h + printoptions.cpp + printoptions.h + templateedit.cpp + templateedit.h templatelayout.cpp + templatelayout.h ) endif() if (BTSUPPORT) set(SUBSURFACE_INTERFACE ${SUBSURFACE_INTERFACE} btdeviceselectiondialog.cpp + btdeviceselectiondialog.h ) endif() @@ -117,10 +160,14 @@ source_group("Subsurface Interface" FILES ${SUBSURFACE_INTERFACE}) # the yearly statistics widget. set(SUBSURFACE_STATISTICS_LIB_SRCS + statistics/monthstatistics.cpp + statistics/monthstatistics.h + statistics/statisticsbar.cpp + statistics/statisticsbar.h statistics/statisticswidget.cpp + statistics/statisticswidget.h statistics/yearstatistics.cpp - statistics/statisticsbar.cpp - statistics/monthstatistics.cpp + statistics/yearstatistics.h ) source_group("Subsurface Statistics" FILES ${SUBSURFACE_STATISTICS_LIB_SRCS}) |