2015-09-02 22:09:08 +00:00
|
|
|
# create the libraries
|
|
|
|
file(GLOB SUBSURFACE_UI *.ui)
|
|
|
|
qt5_wrap_ui(SUBSURFACE_UI_HDRS ${SUBSURFACE_UI})
|
|
|
|
source_group("Subsurface Interface Files" FILES ${SUBSURFACE_UI})
|
|
|
|
|
2015-09-02 23:52:34 +00:00
|
|
|
if(BTSUPPORT)
|
|
|
|
set(BT_SRC_FILES btdeviceselectiondialog.cpp)
|
|
|
|
endif()
|
|
|
|
|
2015-09-03 00:22:29 +00:00
|
|
|
include_directories(.
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
|
|
${CMAKE_BINARY_DIR}
|
|
|
|
)
|
|
|
|
|
2015-09-17 17:04:27 +00:00
|
|
|
add_subdirectory(preferences)
|
2015-10-29 22:12:36 +00:00
|
|
|
add_subdirectory(plugins)
|
2015-09-17 17:04:27 +00:00
|
|
|
|
2015-09-02 22:09:08 +00:00
|
|
|
# the interface, in C++
|
|
|
|
set(SUBSURFACE_INTERFACE
|
|
|
|
updatemanager.cpp
|
|
|
|
about.cpp
|
|
|
|
divecomputermanagementdialog.cpp
|
|
|
|
divelistview.cpp
|
|
|
|
diveplanner.cpp
|
|
|
|
diveshareexportdialog.cpp
|
|
|
|
downloadfromdivecomputer.cpp
|
|
|
|
globe.cpp
|
|
|
|
kmessagewidget.cpp
|
|
|
|
maintab.cpp
|
|
|
|
mainwindow.cpp
|
|
|
|
modeldelegates.cpp
|
|
|
|
notificationwidget.cpp
|
|
|
|
preferences.cpp
|
|
|
|
simplewidgets.cpp
|
|
|
|
starwidget.cpp
|
|
|
|
subsurfacewebservices.cpp
|
|
|
|
tableview.cpp
|
|
|
|
divelogimportdialog.cpp
|
|
|
|
tagwidget.cpp
|
|
|
|
groupedlineedit.cpp
|
|
|
|
divelogexportdialog.cpp
|
|
|
|
divepicturewidget.cpp
|
|
|
|
usersurvey.cpp
|
|
|
|
configuredivecomputerdialog.cpp
|
|
|
|
undocommands.cpp
|
|
|
|
locationinformation.cpp
|
|
|
|
qtwaitingspinner.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
if(NOT NO_USERMANUAL)
|
|
|
|
set(SUBSURFACE_INTERFACE ${SUBSURFACE_INTERFACE}
|
|
|
|
usermanual.cpp
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(NOT NO_PRINTING)
|
|
|
|
set(SUBSURFACE_INTERFACE ${SUBSURFACE_INTERFACE}
|
|
|
|
templateedit.cpp
|
|
|
|
printdialog.cpp
|
|
|
|
printoptions.cpp
|
|
|
|
printer.cpp
|
|
|
|
templatelayout.cpp
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if (FBSUPPORT)
|
|
|
|
set(SUBSURFACE_INTERFACE ${SUBSURFACE_INTERFACE}
|
|
|
|
socialnetworks.cpp
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if (BTSUPPORT)
|
|
|
|
set(SUBSURFACE_INTERFACE ${SUBSURFACE_INTERFACE}
|
|
|
|
btdeviceselectiondialog.cpp
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
source_group("Subsurface Interface" FILES ${SUBSURFACE_INTERFACE})
|
|
|
|
|
|
|
|
# the yearly statistics widget.
|
|
|
|
set(SUBSURFACE_STATISTICS_LIB_SRCS
|
|
|
|
statistics/statisticswidget.cpp
|
|
|
|
statistics/yearstatistics.cpp
|
|
|
|
statistics/statisticsbar.cpp
|
|
|
|
statistics/monthstatistics.cpp
|
|
|
|
)
|
|
|
|
source_group("Subsurface Statistics" FILES ${SUBSURFACE_STATISTICS_LIB_SRCS})
|
|
|
|
|
|
|
|
add_library(subsurface_statistics STATIC ${SUBSURFACE_STATISTICS_LIB_SRCS})
|
|
|
|
target_link_libraries(subsurface_statistics ${QT_LIBRARIES})
|
|
|
|
add_library(subsurface_generated_ui STATIC ${SUBSURFACE_UI_HDRS})
|
|
|
|
target_link_libraries(subsurface_generated_ui ${QT_LIBRARIES})
|
|
|
|
add_library(subsurface_interface STATIC ${SUBSURFACE_INTERFACE})
|
2015-09-17 20:16:40 +00:00
|
|
|
target_link_libraries(subsurface_interface ${QT_LIBRARIES} ${MARBLE_LIBRARIES} subsurface_desktop_preferences)
|