12 lines
276 B
CMake
12 lines
276 B
CMake
|
|
set(SRCROOT ${PROJECT_SOURCE_DIR}/examples/island)
|
|
|
|
# all source files
|
|
set(SRC ${SRCROOT}/Island.cpp)
|
|
|
|
# define the island target
|
|
sfml_add_example(island GUI_APP
|
|
SOURCES ${SRC}
|
|
DEPENDS sfml-graphics
|
|
RESOURCES_DIR resources)
|