mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
28 lines
738 B
Text
28 lines
738 B
Text
|
# the data models that will interface
|
||
|
# with the views.
|
||
|
set(SUBSURFACE_MODELS_LIB_SRCS
|
||
|
cleanertablemodel.cpp
|
||
|
cylindermodel.cpp
|
||
|
diveplannermodel.cpp
|
||
|
models.cpp
|
||
|
filtermodels.cpp
|
||
|
tankinfomodel.cpp
|
||
|
weigthsysteminfomodel.cpp
|
||
|
weightmodel.cpp
|
||
|
divecomputermodel.cpp
|
||
|
treemodel.cpp
|
||
|
tableprintmodel.cpp
|
||
|
yearlystatisticsmodel.cpp
|
||
|
divetripmodel.cpp
|
||
|
divecomputerextradatamodel.cpp
|
||
|
completionmodels.cpp
|
||
|
profileprintmodel.cpp
|
||
|
divepicturemodel.cpp
|
||
|
diveplotdatamodel.cpp
|
||
|
divelocationmodel.cpp
|
||
|
divesitepicturesmodel.cpp
|
||
|
ssrfsortfilterproxymodel.cpp
|
||
|
)
|
||
|
source_group("Subsurface Models" FILES ${SUBSURFACE_MODELS})
|
||
|
add_library(subsurface_models STATIC ${SUBSURFACE_MODELS_LIB_SRCS})
|
||
|
target_link_libraries(subsurface_models ${QT_LIBRARIES})
|