mirror of
https://github.com/SFML/SFML.git
synced 2024-11-25 04:41:05 +08:00
eb07e1e6c5
Co-authored-by: binary1248 <binary1248@hotmail.com> Co-authored-by: Chris Thrasher <chrisjthrasher@gmail.com>
16 lines
461 B
CMake
16 lines
461 B
CMake
# all source files
|
|
set(SRC Tennis.cpp)
|
|
if(SFML_OS_IOS)
|
|
set(RESOURCES
|
|
resources/ball.wav
|
|
resources/tuffy.ttf)
|
|
set_source_files_properties(${RESOURCES} PROPERTIES MACOSX_PACKAGE_LOCATION Resources)
|
|
endif()
|
|
|
|
# define the tennis target
|
|
sfml_add_example(tennis GUI_APP
|
|
SOURCES ${SRC}
|
|
BUNDLE_RESOURCES ${RESOURCES}
|
|
DEPENDS SFML::Audio SFML::Graphics
|
|
RESOURCES_DIR resources)
|