aboutsummaryrefslogtreecommitdiffstats
path: root/stats/CMakeLists.txt
blob: 31e809270f73194500dd812b17e3778bbe5ae598 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# the stats-graph widget
include_directories(.
	${CMAKE_CURRENT_BINARY_DIR}
	${CMAKE_BINARY_DIR}
)

set(SUBSURFACE_STATS_SRCS
	barseries.h
	barseries.cpp
	boxseries.h
	boxseries.cpp
	informationbox.h
	informationbox.cpp
	legend.h
	legend.cpp
	pieseries.h
	pieseries.cpp
	scatterseries.h
	scatterseries.cpp
	statsaxis.h
	statsaxis.cpp
	statscolors.h
	statscolors.cpp
	statsseries.h
	statsseries.cpp
	statsstate.h
	statsstate.cpp
	statsvariables.h
	statsvariables.cpp
	statsview.h
	statsview.cpp
	zvalues.h
)

source_group("Subsurface statistics sourcecode" FILES ${SUBSURFACE_STATS_SRCS})

add_library(subsurface_stats STATIC ${SUBSURFACE_STATS_SRCS})
target_link_libraries(subsurface_stats ${QT_LIBRARIES})