forked from github/server
a8849f2b91
I don't think this has ever been used, and it has fallen victim to entropy since it was first written. good riddance!
14 lines
229 B
CMake
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)
|