forked from github/server
03c247c788
Lots of files are moving to a new location in src/ Some intersting CMake changes.
28 lines
No EOL
404 B
CMake
28 lines
No EOL
404 B
CMake
PROJECT(attributes C)
|
|
SET(_FILES
|
|
alliance.c
|
|
attributes.c
|
|
fleechance.c
|
|
follow.c
|
|
giveitem.c
|
|
gm.c
|
|
hate.c
|
|
iceberg.c
|
|
key.c
|
|
matmod.c
|
|
moved.c
|
|
movement.c
|
|
object.c
|
|
orcification.c
|
|
otherfaction.c
|
|
overrideroads.c
|
|
racename.c
|
|
raceprefix.c
|
|
reduceproduction.c
|
|
targetregion.c
|
|
)
|
|
FOREACH(_FILE ${_FILES})
|
|
LIST(APPEND _SOURCES ${PROJECT_NAME}/${_FILE})
|
|
ENDFOREACH(_FILE)
|
|
SET(ATTRIBUTES_SRC ${_SOURCES} PARENT_SCOPE)
|
|
|