2021-01-01 00:37:56 +00:00
|
|
|
# the stats-graph widget
|
|
|
|
include_directories(.
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
|
|
${CMAKE_BINARY_DIR}
|
|
|
|
)
|
|
|
|
|
|
|
|
set(SUBSURFACE_STATS_SRCS
|
2021-01-01 16:55:44 +00:00
|
|
|
legend.h
|
|
|
|
legend.cpp
|
2021-01-01 13:55:23 +00:00
|
|
|
statscolors.h
|
|
|
|
statscolors.cpp
|
2021-01-01 00:37:56 +00:00
|
|
|
statsvariables.h
|
|
|
|
statsvariables.cpp
|
2021-01-02 09:25:04 +00:00
|
|
|
zvalues.h
|
2021-01-01 00:37:56 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
source_group("Subsurface statistics sourcecode" FILES ${SUBSURFACE_STATS_SRCS})
|
|
|
|
|
|
|
|
add_library(subsurface_stats STATIC ${SUBSURFACE_STATS_SRCS})
|
|
|
|
target_link_libraries(subsurface_stats ${QT_LIBRARIES})
|