mirror of
https://github.com/nomic-ai/gpt4all
synced 2024-11-08 07:10:32 +00:00
Don't build a universal binary
unless -DBUILD_UNIVERSAL=ON
This commit is contained in:
parent
71b308e914
commit
b36e235112
@ -1,9 +1,15 @@
|
|||||||
cmake_minimum_required(VERSION 3.16)
|
cmake_minimum_required(VERSION 3.16)
|
||||||
|
|
||||||
if(APPLE)
|
if(APPLE)
|
||||||
# Build a Universal binary on macOS
|
option(BUILD_UNIVERSAL "Build a Universal binary on macOS" OFF)
|
||||||
# This requires that the found Qt library is compiled as Universal binaries.
|
if(BUILD_UNIVERSAL)
|
||||||
set(CMAKE_OSX_ARCHITECTURES "arm64;x86_64" CACHE STRING "" FORCE)
|
# Build a Universal binary on macOS
|
||||||
|
# This requires that the found Qt library is compiled as Universal binaries.
|
||||||
|
set(CMAKE_OSX_ARCHITECTURES "arm64;x86_64" CACHE STRING "" FORCE)
|
||||||
|
else()
|
||||||
|
# Build for the host architecture on macOS
|
||||||
|
set(CMAKE_OSX_ARCHITECTURES "${CMAKE_HOST_SYSTEM_PROCESSOR}" CACHE STRING "" FORCE)
|
||||||
|
endif()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
set(APP_VERSION_MAJOR 2)
|
set(APP_VERSION_MAJOR 2)
|
||||||
|
Loading…
Reference in New Issue
Block a user