diff --git a/CMakeLists.txt b/CMakeLists.txt index f443f72b..22e7ec42 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,10 +1,9 @@ cmake_minimum_required(VERSION 3.16) if(APPLE) + # 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) - # Specify location of Universal QT installation - # can be removed if default install is Universal (won't be the case with Homebrew installed QT) - set(Qt6_DIR "~/Qt/6.5.0/macos/lib/cmake/Qt6") endif() project(gpt4all VERSION 0.1.0 LANGUAGES CXX)