dfhack/plugins/CMakeLists.txt

46 lines
1.1 KiB
CMake

INCLUDE(Plugins.cmake)
# Dfusion plugin
IF(UNIX)
OPTION(BUILD_DFUSION "Build DFusion." OFF)
ELSE()
OPTION(BUILD_DFUSION "Build DFusion." ON)
ENDIF()
if(BUILD_DFUSION)
add_subdirectory (Dfusion)
2011-07-30 14:08:24 -06:00
endif()
OPTION(BUILD_QTPLUG "Build the experimental Qt plugin." OFF)
if(BUILD_QTPLUG)
2011-07-16 07:34:29 -06:00
add_subdirectory (qtplug)
endif()
2011-06-19 20:29:38 -06:00
OPTION(BUILD_STONESENSE "Build stonesense (needs a checkout first)." OFF)
if(BUILD_STONESENSE)
add_subdirectory (stonesense)
endif()
2011-08-07 16:55:17 -06:00
OPTION(BUILD_DEV_PLUGINS "Build developer plugins." OFF)
if(BUILD_DEV_PLUGINS)
add_subdirectory (devel)
endif()
DFHACK_PLUGIN(reveal reveal.cpp)
DFHACK_PLUGIN(probe probe.cpp)
DFHACK_PLUGIN(plants plants.cpp)
DFHACK_PLUGIN(prospector prospector.cpp)
DFHACK_PLUGIN(cleanmap cleanmap.cpp)
DFHACK_PLUGIN(weather weather.cpp)
DFHACK_PLUGIN(vdig vdig.cpp)
DFHACK_PLUGIN(colonies colonies.cpp)
DFHACK_PLUGIN(mode mode.cpp)
DFHACK_PLUGIN(liquids liquids.cpp)
2011-08-10 20:39:12 -06:00
DFHACK_PLUGIN(tiletypes tiletypes.cpp)
2011-08-02 08:25:10 -06:00
DFHACK_PLUGIN(tubefill tubefill.cpp)
2011-08-03 20:04:46 -06:00
DFHACK_PLUGIN(autodump autodump.cpp)
DFHACK_PLUGIN(cleanowned cleanowned.cpp)
DFHACK_PLUGIN(deramp deramp.cpp)
2011-08-08 18:07:29 -06:00
DFHACK_PLUGIN(flows flows.cpp)
2011-08-22 07:21:13 -06:00