diff options
author | saturneric <[email protected]> | 2025-03-28 23:45:04 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2025-03-28 23:45:04 +0000 |
commit | ef1c36e2aa2a09025bb0d70c78d92e8216e7169d (patch) | |
tree | 419c52ed9ec441215f9110cc42eee07992e5db90 | |
parent | fix: macOS version support Intel machine (diff) | |
download | GpgFrontend-ef1c36e2aa2a09025bb0d70c78d92e8216e7169d.tar.gz GpgFrontend-ef1c36e2aa2a09025bb0d70c78d92e8216e7169d.zip |
chore: not possible to build a universal version without support from homebrew
-rw-r--r-- | CMakeLists.txt | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 19577bd1..70e4ed4b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -30,9 +30,6 @@ message(STATUS "Current Generator: ${CMAKE_GENERATOR}") if(CMAKE_GENERATOR STREQUAL "Xcode") set(CMAKE_USER_MAKE_RULES_OVERRIDE "${CMAKE_SOURCE_DIR}/cmake/FlagsOverridesXcode.cmake") set(XCODE_BUILD 1) - # create a universal binary - # should be set prior to the first project() or enable_language() command invocation - set(CMAKE_OSX_ARCHITECTURES "arm64;x86_64" CACHE STRING "" FORCE) else() set(CMAKE_USER_MAKE_RULES_OVERRIDE "${CMAKE_SOURCE_DIR}/cmake/FlagsOverrides.cmake") endif() |