22 lines
715 B
CMake
22 lines
715 B
CMake
|
# don't use this file directly. use the one in the root folder of the project
|
||
|
|
||
|
# this is required to ensure we use the right configuration for the system.
|
||
|
IF(UNIX)
|
||
|
add_definitions(-DLINUX_BUILD)
|
||
|
ENDIF(UNIX)
|
||
|
|
||
|
# a benchmark program
|
||
|
ADD_EXECUTABLE(expbench expbench.cpp)
|
||
|
TARGET_LINK_LIBRARIES(expbench dfhack)
|
||
|
|
||
|
# a reveal clone
|
||
|
ADD_EXECUTABLE(reveal reveal.cpp)
|
||
|
TARGET_LINK_LIBRARIES(reveal dfhack)
|
||
|
|
||
|
# prospector - produces a list of available materials and their quantities
|
||
|
ADD_EXECUTABLE(prospector prospector.cpp)
|
||
|
TARGET_LINK_LIBRARIES(prospector dfhack)
|
||
|
|
||
|
# cleanmap - removes mud, snow, blood and similar stuff from a map. farmers beware
|
||
|
ADD_EXECUTABLE(cleanmap cleanmap.cpp)
|
||
|
TARGET_LINK_LIBRARIES(cleanmap dfhack)
|