blob: c3747769ced58ef1d77a8e6505f5acc90de13e39 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
message (STATUS "iOS dependency directory: ${IOS_DIR}")
find_package (the_Foundation REQUIRED)
set (SDL2_INCLUDE_DIRS ${IOS_DIR}/include/SDL2)
set (SDL2_LDFLAGS
${IOS_DIR}/lib/libSDL2.a
"-framework AudioToolbox"
"-framework AVFoundation"
"-framework AVFAudio"
"-framework CoreAudio"
"-framework CoreGraphics"
"-framework CoreHaptics"
"-framework CoreMotion"
"-framework Foundation"
"-framework Foundation"
"-framework GameController"
"-framework Metal"
"-framework OpenGLES"
"-framework QuartzCore"
"-framework UIKit"
)
|