mirror of
https://github.com/dhewm/dhewm3-sdk.git
synced 2024-11-25 14:01:10 +00:00
Enable building on Apple Silicon
(based on the commit from Petter Uvesten in the main dhewm3 repo)
This commit is contained in:
parent
59aecaf6d2
commit
fb189eec96
1 changed files with 3 additions and 0 deletions
|
@ -148,6 +148,9 @@ if(CMAKE_COMPILER_IS_GNUCC OR CMAKE_C_COMPILER_ID STREQUAL "Clang")
|
||||||
if(cpu STREQUAL "x86_64")
|
if(cpu STREQUAL "x86_64")
|
||||||
add_compile_options(-arch x86_64 -mmacosx-version-min=10.6)
|
add_compile_options(-arch x86_64 -mmacosx-version-min=10.6)
|
||||||
set(ldflags "${ldflags} -arch x86_64 -mmacosx-version-min=10.6")
|
set(ldflags "${ldflags} -arch x86_64 -mmacosx-version-min=10.6")
|
||||||
|
elseif(cpu STREQUAL "arm64")
|
||||||
|
add_compile_options(-arch arm64 -mmacosx-version-min=11.0)
|
||||||
|
set(ldflags "${ldflags} -arch arm64 -mmacosx-version-min=11.0")
|
||||||
elseif(cpu STREQUAL "x86")
|
elseif(cpu STREQUAL "x86")
|
||||||
CHECK_CXX_COMPILER_FLAG("-arch i386" cxx_has_arch_i386)
|
CHECK_CXX_COMPILER_FLAG("-arch i386" cxx_has_arch_i386)
|
||||||
if(cxx_has_arch_i386)
|
if(cxx_has_arch_i386)
|
||||||
|
|
Loading…
Reference in a new issue