Commit d9d33b85 by Xiaofeng Wang Committed by GitHub

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

Fix build on apple M1
parents bdd83cf6 be3cc338
...@@ -183,6 +183,12 @@ elseif(WIN32) ...@@ -183,6 +183,12 @@ elseif(WIN32)
endif() endif()
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 依赖 # mediakit 以及各个 runtime 依赖
update_cached_list(MK_LINK_LIBRARIES "") update_cached_list(MK_LINK_LIBRARIES "")
update_cached_list(MK_COMPILE_DEFINITIONS ENABLE_VERSION) update_cached_list(MK_COMPILE_DEFINITIONS ENABLE_VERSION)
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论