summaryrefslogtreecommitdiff
path: root/plugins/CMakeLists.txt
diff options
context:
space:
mode:
authorRobert Heinrich2012-03-21 12:40:07 +0100
committerRobert Heinrich2012-03-21 12:40:07 +0100
commit38686765a6bf432f4edecae252d4ba1eba792528 (patch)
tree5a0fa644b36ab6a4791949284012b55d4e068fb3 /plugins/CMakeLists.txt
parent9277dfebb9bf37070034225273114d9834c3cebc (diff)
downloaddfhack-38686765a6bf432f4edecae252d4ba1eba792528.tar.gz
dfhack-38686765a6bf432f4edecae252d4ba1eba792528.tar.bz2
dfhack-38686765a6bf432f4edecae252d4ba1eba792528.tar.xz
added plugin liquidsgo (like liquids but can run from hotkey)
Diffstat (limited to 'plugins/CMakeLists.txt')
-rw-r--r--plugins/CMakeLists.txt8
1 files changed, 8 insertions, 0 deletions
diff --git a/plugins/CMakeLists.txt b/plugins/CMakeLists.txt
index bec46322..8d9935cd 100644
--- a/plugins/CMakeLists.txt
+++ b/plugins/CMakeLists.txt
@@ -114,3 +114,11 @@ OPTION(BUILD_VAMPCHECK "Build the vampcheck plugin." ON)
if(BUILD_VAMPCHECK)
add_subdirectory(vampcheck)
endif()
+
+# alternative version of liquids which can be used non-interactively after configuring it
+# similar to digcircle: simply store stuff in statics and use it when called without parameters
+# this will allow to map the command to a keybinding for much more convenient messing with the map
+OPTION(BUILD_LIQUIDSGO "Build the liquidsgo plugin." ON)
+if(BUILD_LIQUIDSGO)
+ add_subdirectory(liquidsgo)
+endif()