diff options
| author | Petr Mrázek | 2012-04-15 01:58:02 +0200 |
|---|---|---|
| committer | Petr Mrázek | 2012-04-15 01:58:02 +0200 |
| commit | c69af6ab9eff10fc59f68d462656caa2dacd266c (patch) | |
| tree | ddd2f517b667a450e466774c04b3f69741b0e859 /plugins/CMakeLists.txt | |
| parent | a19d25f53207900db923332ffcb70afdecb99df4 (diff) | |
| download | dfhack-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.txt | 3 |
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() |
