mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
16 lines
366 B
Text
16 lines
366 B
Text
|
# the stats-graph widget
|
||
|
include_directories(.
|
||
|
${CMAKE_CURRENT_BINARY_DIR}
|
||
|
${CMAKE_BINARY_DIR}
|
||
|
)
|
||
|
|
||
|
set(SUBSURFACE_STATS_SRCS
|
||
|
statsvariables.h
|
||
|
statsvariables.cpp
|
||
|
)
|
||
|
|
||
|
source_group("Subsurface statistics sourcecode" FILES ${SUBSURFACE_STATS_SRCS})
|
||
|
|
||
|
add_library(subsurface_stats STATIC ${SUBSURFACE_STATS_SRCS})
|
||
|
target_link_libraries(subsurface_stats ${QT_LIBRARIES})
|