server/src/items/CMakeLists.txt
Enno Rehling 1b93c14806 Test E2 items in E2 only.
Remove eye of demon (broken item).
2017-02-27 18:50:48 +01:00

21 lines
382 B
CMake

PROJECT(items C)
SET(_TEST_FILES
xerewards.test.c
)
SET(_FILES
speedsail.c
weapons.c
xerewards.c
)
FOREACH(_FILE ${_FILES})
LIST(APPEND _SOURCES ${PROJECT_NAME}/${_FILE})
ENDFOREACH(_FILE)
SET(ITEMS_SRC ${_SOURCES} PARENT_SCOPE)
FOREACH(_FILE ${_TEST_FILES})
LIST(APPEND _TESTS ${PROJECT_NAME}/${_FILE})
ENDFOREACH(_FILE)
SET(ITEMS_TESTS ${_TESTS} PARENT_SCOPE)