2015-09-03 18:25:01 +00:00
|
|
|
# the data models that will interface
|
|
|
|
# with the views.
|
2018-01-09 15:30:03 +00:00
|
|
|
|
|
|
|
# models used both mobile and desktop builds
|
|
|
|
set(SUBSURFACE_GENERIC_MODELS_LIB_SRCS
|
2018-01-28 08:52:51 +00:00
|
|
|
completionmodels.cpp
|
2019-03-25 21:47:44 +00:00
|
|
|
completionmodels.h
|
|
|
|
diveimportedmodel.cpp
|
|
|
|
diveimportedmodel.h
|
2018-01-28 14:21:28 +00:00
|
|
|
divelocationmodel.cpp
|
2019-03-25 21:47:44 +00:00
|
|
|
divelocationmodel.h
|
|
|
|
diveplotdatamodel.cpp
|
|
|
|
diveplotdatamodel.h
|
2018-03-13 01:23:22 +00:00
|
|
|
maplocationmodel.cpp
|
2019-03-25 21:47:44 +00:00
|
|
|
maplocationmodel.h
|
2018-01-09 15:30:03 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
# models exclusively used in desktop builds
|
|
|
|
set(SUBSURFACE_DESKTOP_MODELS_LIB_SRCS
|
2018-01-09 18:32:41 +00:00
|
|
|
cleanertablemodel.cpp
|
2019-03-25 21:47:44 +00:00
|
|
|
cleanertablemodel.h
|
|
|
|
cylindermodel.cpp
|
|
|
|
cylindermodel.h
|
|
|
|
divecomputerextradatamodel.cpp
|
|
|
|
divecomputerextradatamodel.h
|
|
|
|
divecomputermodel.cpp
|
|
|
|
divecomputermodel.h
|
|
|
|
divepicturemodel.cpp
|
|
|
|
divepicturemodel.h
|
|
|
|
diveplannermodel.cpp
|
|
|
|
diveplannermodel.h
|
|
|
|
divetripmodel.cpp
|
|
|
|
divetripmodel.h
|
|
|
|
filtermodels.cpp
|
|
|
|
filtermodels.h
|
2018-01-09 18:32:41 +00:00
|
|
|
models.cpp
|
2019-03-25 21:47:44 +00:00
|
|
|
models.h
|
2018-01-09 18:32:41 +00:00
|
|
|
tankinfomodel.cpp
|
2019-03-25 21:47:44 +00:00
|
|
|
tankinfomodel.h
|
2018-01-09 18:32:41 +00:00
|
|
|
treemodel.cpp
|
2019-03-25 21:47:44 +00:00
|
|
|
treemodel.h
|
2018-01-09 18:32:41 +00:00
|
|
|
weightmodel.cpp
|
2019-03-25 21:47:44 +00:00
|
|
|
weightmodel.h
|
|
|
|
weightsysteminfomodel.cpp
|
|
|
|
weightsysteminfomodel.h
|
|
|
|
yearlystatisticsmodel.cpp
|
|
|
|
yearlystatisticsmodel.h
|
2018-01-09 15:30:03 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
# models exclusively used in mobile builds
|
|
|
|
set(SUBSURFACE_MOBILE_MODELS_LIB_SRCS
|
2016-01-08 15:11:49 +00:00
|
|
|
divelistmodel.cpp
|
2019-03-25 21:47:44 +00:00
|
|
|
divelistmodel.h
|
2018-01-09 15:30:03 +00:00
|
|
|
gpslistmodel.cpp
|
2019-03-25 21:47:44 +00:00
|
|
|
gpslistmodel.h
|
|
|
|
messagehandlermodel.cpp
|
|
|
|
messagehandlermodel.h
|
2015-09-03 18:25:01 +00:00
|
|
|
)
|
2015-09-03 18:56:37 +00:00
|
|
|
|
2019-03-03 21:19:32 +00:00
|
|
|
if (SUBSURFACE_TARGET_EXECUTABLE MATCHES "DesktopExecutable")
|
2018-01-09 15:30:03 +00: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 21:19:32 +00:00
|
|
|
elseif (SUBSURFACE_TARGET_EXECUTABLE MATCHES "MobileExecutable")
|
2018-01-09 15:30:03 +00: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()
|