17 lines
420 B
CMake
17 lines
420 B
CMake
project(buildingplan)
|
|
|
|
set(COMMON_HDRS
|
|
buildingplan.h
|
|
buildingtypekey.h
|
|
defaultitemfilters.h
|
|
itemfilter.h
|
|
plannedbuilding.h
|
|
)
|
|
set_source_files_properties(${COMMON_HDRS} PROPERTIES HEADER_FILE_ONLY TRUE)
|
|
|
|
dfhack_plugin(buildingplan
|
|
buildingplan.cpp buildingplan_cycle.cpp buildingtypekey.cpp
|
|
defaultitemfilters.cpp itemfilter.cpp plannedbuilding.cpp
|
|
${COMMON_HDRS}
|
|
LINK_LIBRARIES lua)
|