dfhack/tools/playground/CMakeLists.txt

93 lines
2.7 KiB
CMake

2011-03-20 10:17:33 -06:00
if(NOT DEFINED DFHACK_CONSISTENCY)
MESSAGE(FATAL_ERROR "Please build the whole thing, not parts. You can turn parts on/off using options.")
ENDIF()
2010-05-25 19:22:17 -06:00
# this is required to ensure we use the right configuration for the system.
IF(UNIX)
2011-03-20 10:17:33 -06:00
add_definitions(-DLINUX_BUILD)
2010-05-25 19:22:17 -06:00
ENDIF(UNIX)
# a creature mood dump hack. has hardcoded offsets
DFHACK_TOOL(dfmoodump moodump.cpp)
2010-05-25 19:22:17 -06:00
# bauxite - turn all mechanisms into bauxite mechanisms
# Author: Alex Legg
# FIXME: turned off. there is no reliable Items module.
#DFHACK_TOOL(dfbauxite dfbauxite.cpp)
2010-05-25 19:22:17 -06:00
# digger - designate for digging by tile class
# Author: mizipzor
DFHACK_TOOL(dfdigger digger.cpp)
2010-05-25 19:22:17 -06:00
# digger2 - designate for digging from a text file
# Author: rOut
DFHACK_TOOL(dfdigger2 digger2.cpp)
2011-02-08 14:55:40 -07:00
2010-05-25 19:22:17 -06:00
# itemdesignator - change some item designations (dump, forbid, on-fire) for all
# items of a given type and material
# Author: belal
2011-04-16 15:57:04 -06:00
DFHACK_TOOL(dfitemdesignator itemdesignator.cpp)
2010-05-25 19:22:17 -06:00
# catsplosion - Accelerates pregnancy
# Author: Zhentar
# FIXME: no longer works due to changes in DF
#DFHACK_TOOL(dfcatsplosion catsplosion.cpp)
2010-05-25 19:22:17 -06:00
# findnameindexes
# Author: belal
DFHACK_TOOL(dffindnameindexes findnameindexes.cpp)
2010-05-25 19:22:17 -06:00
# try things
DFHACK_TOOL(dftry dftry.cpp)
2010-05-25 19:22:17 -06:00
# renamer - change the custom names and professions of creatures, sends keys to
# df directly
# Author: belal
# DFHACK_TOOL(dfrenamer renamer.cpp)
# copypaste
# Author: belal
# copies the current buildings in a df map, and then designates the area to be dug
# mainly a proof of concept for my gui application dfCopyPaste
DFHACK_TOOL(dfcopypaste copypaste.cpp)
# paths
# Author: belal
# dumps the current path to the DF exe, as well as the relative paths to the
# current tileset and color files
DFHACK_TOOL(dfpaths paths.cpp)
# printtiletypes
# Author: zilpin
# Prints CSV dump of all tile type information.
# No DF process needed. Intended only for debugging and information purposes.
DFHACK_TOOL(dfprinttiletypes printtiletypes.cpp)
# hellhole
# Author: zilpin
# Creates a bottomless hole to hell.
# Experimental version hard-codes values.
# Will have many options in the future.
DFHACK_TOOL(dfhellhole hellhole.cpp)
# dfcreaturemanager
2011-04-11 05:16:47 -06:00
# Author: raoulxq
# - Display creatures (overview & detail)
2011-04-13 06:47:53 -06:00
# - Modify skills and labors of creatures
# - Kill creatures
# - Etc.
DFHACK_TOOL(dfcreaturemanager creaturemanager.cpp)
2011-04-11 05:16:47 -06:00
# digpattern
# Author: raoulxq
# Dig a specific pattern (in this case 3x3 bedrooms, modify as you like)
DFHACK_TOOL(dfdigpattern digpattern.cpp)
DFHACK_TOOL(dffixbug-3708 fix-3708.cpp)
2010-08-12 18:35:10 -06:00
# this needs the C bindings
IF(BUILD_DFHACK_C_BINDINGS)
# The C bindings won't be real C bindings until this compiles.
#DFHACK_TOOL(dftest test.c)
ENDIF(BUILD_DFHACK_C_BINDINGS)