server/src/spells/CMakeLists.txt

16 lines
276 B
Text
Raw Normal View History

PROJECT(spells C)
SET(_FILES
borders.c
buildingcurse.c
combatspells.c
regioncurse.c
shipcurse.c
unitcurse.c
2015-07-07 20:23:24 +02:00
magicresistance.c
flyingship.c
)
FOREACH(_FILE ${_FILES})
LIST(APPEND _SOURCES ${PROJECT_NAME}/${_FILE})
ENDFOREACH(_FILE)
SET(SPELLS_SRC ${_SOURCES} PARENT_SCOPE)