2015-09-03 15:25:01 -03:00
|
|
|
# the data models that will interface
|
|
|
|
# with the views.
|
2018-01-09 16:30:03 +01:00
|
|
|
|
|
|
|
# models used both mobile and desktop builds
|
|
|
|
set(SUBSURFACE_GENERIC_MODELS_LIB_SRCS
|
2019-12-15 08:32:50 +01:00
|
|
|
cleanertablemodel.cpp
|
|
|
|
cleanertablemodel.h
|
2018-01-28 09:52:51 +01:00
|
|
|
completionmodels.cpp
|
2019-03-25 22:47:44 +01:00
|
|
|
completionmodels.h
|
2019-12-15 08:32:50 +01:00
|
|
|
cylindermodel.cpp
|
|
|
|
cylindermodel.h
|
2019-03-25 22:47:44 +01:00
|
|
|
diveimportedmodel.cpp
|
|
|
|
diveimportedmodel.h
|
2018-01-28 15:21:28 +01:00
|
|
|
divelocationmodel.cpp
|
2019-03-25 22:47:44 +01:00
|
|
|
divelocationmodel.h
|
2019-12-15 08:32:50 +01:00
|
|
|
diveplannermodel.cpp
|
|
|
|
diveplannermodel.h
|
2019-03-25 22:47:44 +01:00
|
|
|
diveplotdatamodel.cpp
|
|
|
|
diveplotdatamodel.h
|
2018-03-12 18:23:22 -07:00
|
|
|
maplocationmodel.cpp
|
2019-03-25 22:47:44 +01:00
|
|
|
maplocationmodel.h
|
2019-12-15 08:32:50 +01:00
|
|
|
models.cpp
|
|
|
|
models.h
|
|
|
|
tankinfomodel.cpp
|
|
|
|
tankinfomodel.h
|
2018-01-09 16:30:03 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
# models exclusively used in desktop builds
|
|
|
|
set(SUBSURFACE_DESKTOP_MODELS_LIB_SRCS
|
2019-03-25 22:47:44 +01:00
|
|
|
divecomputerextradatamodel.cpp
|
|
|
|
divecomputerextradatamodel.h
|
|
|
|
divecomputermodel.cpp
|
|
|
|
divecomputermodel.h
|
|
|
|
divepicturemodel.cpp
|
|
|
|
divepicturemodel.h
|
2019-05-04 20:51:16 -07:00
|
|
|
divesiteimportmodel.cpp
|
|
|
|
divesiteimportmodel.h
|
2019-03-25 22:47:44 +01:00
|
|
|
divetripmodel.cpp
|
|
|
|
divetripmodel.h
|
|
|
|
filtermodels.cpp
|
|
|
|
filtermodels.h
|
2018-01-09 19:32:41 +01:00
|
|
|
treemodel.cpp
|
2019-03-25 22:47:44 +01:00
|
|
|
treemodel.h
|
2018-01-09 19:32:41 +01:00
|
|
|
weightmodel.cpp
|
2019-03-25 22:47:44 +01:00
|
|
|
weightmodel.h
|
|
|
|
weightsysteminfomodel.cpp
|
|
|
|
weightsysteminfomodel.h
|
|
|
|
yearlystatisticsmodel.cpp
|
|
|
|
yearlystatisticsmodel.h
|
2018-01-09 16:30:03 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
# models exclusively used in mobile builds
|
|
|
|
set(SUBSURFACE_MOBILE_MODELS_LIB_SRCS
|
2016-01-08 13:11:49 -02:00
|
|
|
divelistmodel.cpp
|
2019-03-25 22:47:44 +01:00
|
|
|
divelistmodel.h
|
2018-01-09 16:30:03 +01:00
|
|
|
gpslistmodel.cpp
|
2019-03-25 22:47:44 +01:00
|
|
|
gpslistmodel.h
|
|
|
|
messagehandlermodel.cpp
|
|
|
|
messagehandlermodel.h
|
2015-09-03 15:25:01 -03:00
|
|
|
)
|
2015-09-03 15:56:37 -03:00
|
|
|
|
2019-03-03 22:19:32 +01:00
|
|
|
if (SUBSURFACE_TARGET_EXECUTABLE MATCHES "DesktopExecutable")
|
2018-01-09 16:30:03 +01:00
|
|
|
add_library(subsurface_models_desktop STATIC ${SUBSURFACE_GENERIC_MODELS_LIB_SRCS}
|
|
|
|
${SUBSURFACE_DESKTOP_MODELS_LIB_SRCS})
|
|
|
|
target_link_libraries(subsurface_models_desktop ${QT_LIBRARIES})
|
2019-03-03 22:19:32 +01:00
|
|
|
elseif (SUBSURFACE_TARGET_EXECUTABLE MATCHES "MobileExecutable")
|
2018-01-09 16:30:03 +01:00
|
|
|
add_library(subsurface_models_mobile STATIC ${SUBSURFACE_GENERIC_MODELS_LIB_SRCS}
|
|
|
|
${SUBSURFACE_MOBILE_MODELS_LIB_SRCS})
|
|
|
|
target_link_libraries(subsurface_models_mobile ${QT_LIBRARIES})
|
|
|
|
endif()
|