Skip to content

Commit 618de08

Browse files
author
Alexander Widerberg
committed
Change ARKit to UIKit since tvOS and watchOS obviously does not have ARKit...
1 parent 96e13cf commit 618de08

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

example/example-lib/CMakeLists.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ else()
1111
message(STATUS "kqueue found!")
1212
endif()
1313

14-
find_library(HAVE_ARKIT ARKit)
15-
if (NOT HAVE_ARKIT)
16-
message(FATAL_ERROR "ARKit.framework NOT found!")
14+
find_library(HAVE_UIKIT UIKit)
15+
if (NOT HAVE_UIKIT)
16+
message(FATAL_ERROR "UIKit.framework NOT found!")
1717
else()
18-
message(STATUS "ARKit.framework found!")
18+
message(STATUS "UIKit.framework found!")
1919
endif()
2020

2121
# Try to find XCtest as well

0 commit comments

Comments
 (0)