aboutsummaryrefslogtreecommitdiffstats
path: root/stats/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'stats/CMakeLists.txt')
-rw-r--r--stats/CMakeLists.txt15
1 files changed, 15 insertions, 0 deletions
diff --git a/stats/CMakeLists.txt b/stats/CMakeLists.txt
new file mode 100644
index 000000000..1eba8377f
--- /dev/null
+++ b/stats/CMakeLists.txt
@@ -0,0 +1,15 @@
+# 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})