server/src/modules/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

16 lines
250 B
CMake

PROJECT(modules C)
SET(_FILES
arena.c
autoseed.c
dungeon.c
gmcmd.c
museum.c
score.c
weather.c
wormhole.c
xmas.c
)
FOREACH(_FILE ${_FILES})
LIST(APPEND _SOURCES ${PROJECT_NAME}/${_FILE})
ENDFOREACH(_FILE)
SET(MODULES_SRC ${_SOURCES} PARENT_SCOPE)