summaryrefslogtreecommitdiff
path: root/utilities/diatheke/CMakeLists.txt
blob: ab11cb13ec5adceed4dea810b112bf9e4519a353 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
####################################################################
# And, of course, diatheke is a beast unto itself
#
# Let's go!
#
ADD_EXECUTABLE(diatheke
	diatheke.cpp
	corediatheke.cpp
	diathekemgr.cpp
	diafiltmgr.cpp
	thmlcgi.cpp
	gbfcgi.cpp
	osiscgi.cpp
)
IF(BUILDING_SHARED)
	TARGET_LINK_LIBRARIES(diatheke sword)
ELSE(BUILDING_SHARED)
	TARGET_LINK_LIBRARIES(diatheke sword_static)
ENDIF(BUILDING_SHARED)
INSTALL(TARGETS diatheke
	DESTINATION "${BINDIR}"
	COMPONENT utilities
)