server/src/modules/CMakeLists.txt
Enno Rehling a8849f2b91 remove the obsolete dungeons module.
I don't think this has ever been used, and it has fallen victim to entropy since it was first written. good riddance!
2014-12-13 00:03:24 +01:00

14 lines
229 B
CMake

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