server/src/spells/CMakeLists.txt
Enno Rehling 75f2be75d8 remove code for alp (non-functional)
remove code for removecurse trigger (only used by alp)
2016-03-25 21:18:57 +01:00

15 lines
276 B
CMake

PROJECT(spells C)
SET(_FILES
borders.c
buildingcurse.c
combatspells.c
regioncurse.c
shipcurse.c
unitcurse.c
magicresistance.c
flyingship.c
)
FOREACH(_FILE ${_FILES})
LIST(APPEND _SOURCES ${PROJECT_NAME}/${_FILE})
ENDFOREACH(_FILE)
SET(SPELLS_SRC ${_SOURCES} PARENT_SCOPE)