dfhack/plugins/devel/CMakeLists.txt

30 lines
955 B
CMake

2019-07-16 20:19:11 -06:00
if(UNIX)
dfhack_plugin(vectors vectors.cpp)
2011-08-07 16:55:17 -06:00
endif()
include(FindThreads)
2011-08-07 16:55:17 -06:00
2019-07-16 20:19:11 -06:00
add_definitions(-DDEV_PLUGIN)
dfhack_plugin(buildprobe buildprobe.cpp)
dfhack_plugin(color-dfhack-text color-dfhack-text.cpp)
dfhack_plugin(counters counters.cpp)
dfhack_plugin(dumpmats dumpmats.cpp)
dfhack_plugin(eventExample eventExample.cpp)
dfhack_plugin(frozen frozen.cpp)
dfhack_plugin(kittens kittens.cpp LINK_LIBRARIES ${CMAKE_THREAD_LIBS_INIT} COMPILE_FLAGS_MSVC "/wd4316")
2019-07-16 20:19:11 -06:00
dfhack_plugin(memview memview.cpp memutils.cpp LINK_LIBRARIES lua)
dfhack_plugin(onceExample onceExample.cpp)
2023-07-31 22:18:28 -06:00
# dfhack_plugin(renderer-msg renderer-msg.cpp)
# dfhack_plugin(rprobe rprobe.cpp)
# dfhack_plugin(stepBetween stepBetween.cpp)
2019-07-16 20:19:11 -06:00
dfhack_plugin(stockcheck stockcheck.cpp)
dfhack_plugin(stripcaged stripcaged.cpp)
dfhack_plugin(tilesieve tilesieve.cpp)
2023-07-31 22:18:28 -06:00
# dfhack_plugin(zoom zoom.cpp)
2014-06-30 00:54:15 -06:00
2019-07-16 20:19:11 -06:00
if(UNIX)
dfhack_plugin(ref-index ref-index.cpp)
endif()
add_subdirectory(check-structures-sanity)