summaryrefslogtreecommitdiff
path: root/plugins/CMakeLists.txt
diff options
context:
space:
mode:
authorPetr Mrázek2012-03-23 23:49:28 +0100
committerPetr Mrázek2012-03-23 23:49:28 +0100
commit078caf363f693a8f7744de85a0539de4f68346cc (patch)
tree00dae75406036670cf0c94740eae4b2f1de2a32f /plugins/CMakeLists.txt
parent2f76a52959460eda3597c12c303b80287a4636b2 (diff)
downloaddfhack-078caf363f693a8f7744de85a0539de4f68346cc.tar.gz
dfhack-078caf363f693a8f7744de85a0539de4f68346cc.tar.bz2
dfhack-078caf363f693a8f7744de85a0539de4f68346cc.tar.xz
Move merged plugins into main plugin folder.
Diffstat (limited to 'plugins/CMakeLists.txt')
-rw-r--r--plugins/CMakeLists.txt15
1 files changed, 4 insertions, 11 deletions
diff --git a/plugins/CMakeLists.txt b/plugins/CMakeLists.txt
index 36efb82e..f3afa3f2 100644
--- a/plugins/CMakeLists.txt
+++ b/plugins/CMakeLists.txt
@@ -65,6 +65,10 @@ OPTION(BUILD_SUPPORTED "Build the supported plugins (reveal, probe, etc.)." ON)
if (BUILD_SUPPORTED)
DFHACK_PLUGIN(reveal reveal.cpp)
DFHACK_PLUGIN(probe probe.cpp)
+ # this is a plugin which helps detect cursed creatures (vampires, necromancers, werebeasts, ...)
+ DFHACK_PLUGIN(cursecheck cursecheck.cpp)
+ # alternative version of liquids which can be used non-interactively after configuring it
+ DFHACK_PLUGIN(liquidsgo liquidsgo.cpp)
DFHACK_PLUGIN(drybuckets drybuckets.cpp)
DFHACK_PLUGIN(getplants getplants.cpp)
DFHACK_PLUGIN(plants plants.cpp)
@@ -109,14 +113,3 @@ if(BUILD_SKELETON)
add_subdirectory(skeleton)
endif()
-# this is a plugin which helps detect cursed creatures (vampires, necromancers, werebeasts, ...)
-OPTION(BUILD_CURSECHECK "Build the cursecheck plugin." ON)
-if(BUILD_CURSECHECK)
- add_subdirectory(cursecheck)
-endif()
-
-# alternative version of liquids which can be used non-interactively after configuring it
-OPTION(BUILD_LIQUIDSGO "Build the liquidsgo plugin." ON)
-if(BUILD_LIQUIDSGO)
- add_subdirectory(liquidsgo)
-endif()