summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Depends-iOS.cmake2
-rw-r--r--Depends.cmake3
2 files changed, 4 insertions, 1 deletions
diff --git a/Depends-iOS.cmake b/Depends-iOS.cmake
index 96a2f584..912251ca 100644
--- a/Depends-iOS.cmake
+++ b/Depends-iOS.cmake
@@ -22,6 +22,8 @@ set (SDL2_LDFLAGS
22 "-framework UIKit" 22 "-framework UIKit"
23) 23)
24 24
25pkg_check_modules (WEBP IMPORTED_TARGET libwebpdecoder)
26
25set (FRIBIDI_FOUND YES) 27set (FRIBIDI_FOUND YES)
26set (FRIBIDI_LIBRARIES ${IOS_DIR}/lib/libfribidi.a) 28set (FRIBIDI_LIBRARIES ${IOS_DIR}/lib/libfribidi.a)
27 29
diff --git a/Depends.cmake b/Depends.cmake
index ca01b6c5..10e434e7 100644
--- a/Depends.cmake
+++ b/Depends.cmake
@@ -1,9 +1,10 @@
1find_package (PkgConfig)
2
1if (IOS) 3if (IOS)
2 include (Depends-iOS.cmake) 4 include (Depends-iOS.cmake)
3 return () 5 return ()
4endif () 6endif ()
5 7
6find_package (PkgConfig)
7find_program (MESON_EXECUTABLE meson DOC "Meson build system") 8find_program (MESON_EXECUTABLE meson DOC "Meson build system")
8find_program (NINJA_EXECUTABLE ninja DOC "Ninja build tool") 9find_program (NINJA_EXECUTABLE ninja DOC "Ninja build tool")
9include (ExternalProject) 10include (ExternalProject)