Skip to content

Commit

Permalink
Change ARKit to UIKit since tvOS and watchOS obviously does not have …
Browse files Browse the repository at this point in the history
…ARKit...
  • Loading branch information
Alexander Widerberg committed May 9, 2019
1 parent 96e13cf commit 618de08
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions example/example-lib/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ else()
message(STATUS "kqueue found!")
endif()

find_library(HAVE_ARKIT ARKit)
if (NOT HAVE_ARKIT)
message(FATAL_ERROR "ARKit.framework NOT found!")
find_library(HAVE_UIKIT UIKit)
if (NOT HAVE_UIKIT)
message(FATAL_ERROR "UIKit.framework NOT found!")
else()
message(STATUS "ARKit.framework found!")
message(STATUS "UIKit.framework found!")
endif()

# Try to find XCtest as well
Expand Down

0 comments on commit 618de08

Please sign in to comment.