server/src/triggers/CMakeLists.txt
Enno Rehling 03c247c788 I am killing the core/ directory.
Lots of files are moving to a new location in src/
Some intersting CMake changes.
2014-02-18 05:45:00 +01:00

21 lines
334 B
CMake

PROJECT(triggers C)
SET(_FILES
changefaction.c
changerace.c
clonedied.c
createcurse.c
createunit.c
gate.c
giveitem.c
killunit.c
removecurse.c
shock.c
timeout.c
triggers.c
unguard.c
unitmessage.c
)
FOREACH(_FILE ${_FILES})
LIST(APPEND _SOURCES ${PROJECT_NAME}/${_FILE})
ENDFOREACH(_FILE)
SET(TRIGGERS_SRC ${_SOURCES} PARENT_SCOPE)