Limit macOS scope to x86_64 for now

Got some arm64-related errors, which is to be expected.
This commit is contained in:
Dan Raviv 2024-04-16 10:56:28 -07:00
parent c6ffeb8ad4
commit b03f9e0478

View File

@ -5,6 +5,8 @@ MARK_AS_ADVANCED(CMAKE_BACKWARDS_COMPATIBILITY)
# allow more human readable "if then else" constructs
SET( CMAKE_ALLOW_LOOSE_LOOP_CONSTRUCTS TRUE )
# TODO: Apple Silicon (arm64) later
SET( CMAKE_OSX_ARCHITECTURES x86_64 CACHE STRING "" FORCE)
PROJECT(Descent3)