mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2026-05-09 03:00:07 -04:00
fix uikit and appkit detection in cmake
This commit is contained in:
@@ -380,13 +380,23 @@ message(STATUS "CMAKE_SYSTEM_PROCESSOR := ${CMAKE_SYSTEM_PROCESSOR}")
|
||||
if (APPLE)
|
||||
message(STATUS "Apple device detected.")
|
||||
set(ADDITIONAL_SRC ${PM3_ROOT}/client/src/util_darwin.h ${PM3_ROOT}/client/src/util_darwin.m ${ADDITIONAL_SRC})
|
||||
if (EXISTS /private/var/mobile)
|
||||
message(STATUS "iOS detected.")
|
||||
|
||||
find_library(UIKIT_LIBRARY UIKit)
|
||||
if (NOT UIKIT_LIBRARY)
|
||||
message(STATUS "UIKit.framework NOT found!")
|
||||
else()
|
||||
message(STATUS "UIKit.framework found! ${UIKIT_LIBRARY}")
|
||||
set(ADDITIONAL_LNK "-framework Foundation" "-framework UIKit")
|
||||
else (EXISTS /private/var/mobile)
|
||||
message(STATUS "macOS detected.")
|
||||
set(ADDITIONAL_LNK "-framework Foundation" "-framework AppKit")
|
||||
endif (EXISTS /private/var/mobile)
|
||||
endif()
|
||||
|
||||
find_library(APPKIT_LIBRARY AppKit)
|
||||
if (NOT APPKIT_LIBRARY)
|
||||
message(STATUS "AppKit.framework NOT found!")
|
||||
else()
|
||||
message(STATUS "AppKit.framework found! ${APPKIT_LIBRARY}")
|
||||
set(ADDITIONAL_LNK "-framework Foundation" "-framework AppKit")
|
||||
endif()
|
||||
|
||||
endif (APPLE)
|
||||
|
||||
if ((NOT SKIPQT EQUAL 1) AND (Qt5_FOUND))
|
||||
|
||||
Reference in New Issue
Block a user