diff --git a/examples/iOS/CMakeLists.txt b/examples/iOS/CMakeLists.txt index 95868153..96450f42 100644 --- a/examples/iOS/CMakeLists.txt +++ b/examples/iOS/CMakeLists.txt @@ -5,12 +5,11 @@ set(CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake/Modules) # All source files set(SRC ${SRCROOT}/main.cpp) -# Use the resources from the android example set(RESOURCES - ${CMAKE_CURRENT_SOURCE_DIR}/../android/assets/canary.wav - ${CMAKE_CURRENT_SOURCE_DIR}/../android/assets/image.png - ${CMAKE_CURRENT_SOURCE_DIR}/../android/assets/orchestral.ogg - ${CMAKE_CURRENT_SOURCE_DIR}/../android/assets/sansation.ttf) + ${SRCROOT}/resources/canary.wav + ${SRCROOT}/resources/image.png + ${SRCROOT}/resources/orchestral.ogg + ${SRCROOT}/resources/sansation.ttf) set_source_files_properties( ${RESOURCES} PROPERTIES MACOSX_PACKAGE_LOCATION Resources ) diff --git a/examples/iOS/resources/canary.wav b/examples/iOS/resources/canary.wav new file mode 100644 index 00000000..a0f3aecc Binary files /dev/null and b/examples/iOS/resources/canary.wav differ diff --git a/examples/iOS/resources/image.png b/examples/iOS/resources/image.png new file mode 100644 index 00000000..29ba0102 Binary files /dev/null and b/examples/iOS/resources/image.png differ diff --git a/examples/iOS/resources/orchestral.ogg b/examples/iOS/resources/orchestral.ogg new file mode 100644 index 00000000..f764d61d Binary files /dev/null and b/examples/iOS/resources/orchestral.ogg differ diff --git a/examples/iOS/resources/sansation.ttf b/examples/iOS/resources/sansation.ttf new file mode 100644 index 00000000..d85fbc81 Binary files /dev/null and b/examples/iOS/resources/sansation.ttf differ