mirror of
https://github.com/nomic-ai/gpt4all.git
synced 2024-10-01 01:06:10 -04:00
Don't build a universal binary
unless -DBUILD_UNIVERSAL=ON
This commit is contained in:
parent
55084333a9
commit
b09ca009c5
@ -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