dfhack/plugins/buildingplan/CMakeLists.txt

17 lines
420 B
CMake

2022-12-02 17:32:21 -07:00
project(buildingplan)
set(COMMON_HDRS
buildingplan.h
buildingtypekey.h
defaultitemfilters.h
2023-02-13 19:45:26 -07:00
itemfilter.h
plannedbuilding.h
2022-12-02 17:32:21 -07:00
)
set_source_files_properties(${COMMON_HDRS} PROPERTIES HEADER_FILE_ONLY TRUE)
2023-02-13 19:45:26 -07:00
dfhack_plugin(buildingplan
buildingplan.cpp buildingplan_cycle.cpp buildingtypekey.cpp
defaultitemfilters.cpp itemfilter.cpp plannedbuilding.cpp
2023-02-13 19:45:26 -07:00
${COMMON_HDRS}
LINK_LIBRARIES lua)