forked from github/server
b399356971
there is a saved attribute that needs this
This reverts commit 7e529f2b4c
.
16 lines
250 B
CMake
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)
|