forked from github/server
03c247c788
Lots of files are moving to a new location in src/ Some intersting CMake changes.
11 lines
203 B
CMake
11 lines
203 B
CMake
PROJECT(races C)
|
|
SET(_FILES
|
|
dragons.c
|
|
illusion.c
|
|
races.c
|
|
zombies.c
|
|
)
|
|
FOREACH(_FILE ${_FILES})
|
|
LIST(APPEND _SOURCES ${PROJECT_NAME}/${_FILE})
|
|
ENDFOREACH(_FILE)
|
|
SET(RACES_SRC ${_SOURCES} PARENT_SCOPE)
|