server/src/modules/CMakeLists.txt
Enno Rehling b399356971 Revert "remove GM command"
there is a saved attribute that needs this
This reverts commit 7e529f2b4c.
2014-03-22 21:49:18 +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)