Merge pull request #1842 from wasphin/feature/apple-m1

Fix build on apple M1
This commit is contained in:
Xiaofeng Wang 2022-07-29 19:59:07 +08:00 committed by GitHub
commit d9d33b8522
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -183,6 +183,12 @@ elseif(WIN32)
endif()
endif()
if(CMAKE_HOST_SYSTEM_NAME STREQUAL "Darwin")
if(CMAKE_HOST_SYSTEM_PROCESSOR STREQUAL "arm64")
include_directories(SYSTEM "/opt/homebrew/include")
endif()
endif()
# mediakit runtime
update_cached_list(MK_LINK_LIBRARIES "")
update_cached_list(MK_COMPILE_DEFINITIONS ENABLE_VERSION)