summaryrefslogtreecommitdiff
path: root/plugins/CMakeLists.txt
diff options
context:
space:
mode:
authorPetr Mrázek2012-04-15 01:58:02 +0200
committerPetr Mrázek2012-04-15 01:58:02 +0200
commitc69af6ab9eff10fc59f68d462656caa2dacd266c (patch)
treeddd2f517b667a450e466774c04b3f69741b0e859 /plugins/CMakeLists.txt
parenta19d25f53207900db923332ffcb70afdecb99df4 (diff)
downloaddfhack-c69af6ab9eff10fc59f68d462656caa2dacd266c.tar.gz
dfhack-c69af6ab9eff10fc59f68d462656caa2dacd266c.tar.bz2
dfhack-c69af6ab9eff10fc59f68d462656caa2dacd266c.tar.xz
Fix missing lua linkage in burrows plugin.
Diffstat (limited to 'plugins/CMakeLists.txt')
-rw-r--r--plugins/CMakeLists.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/CMakeLists.txt b/plugins/CMakeLists.txt
index 5fe21f66..b520c5f1 100644
--- a/plugins/CMakeLists.txt
+++ b/plugins/CMakeLists.txt
@@ -102,7 +102,8 @@ if (BUILD_SUPPORTED)
DFHACK_PLUGIN(feature feature.cpp)
DFHACK_PLUGIN(lair lair.cpp)
DFHACK_PLUGIN(zone zone.cpp)
- DFHACK_PLUGIN(burrows burrows.cpp)
+ # this one exports functions to lua
+ DFHACK_PLUGIN(burrows burrows.cpp LINK_LIBRARIES lua)
# not yet. busy with other crud again...
#DFHACK_PLUGIN(versionosd versionosd.cpp)
endif()