diff --git a/CMakeLists.txt b/CMakeLists.txt index 038a2bf7..3115d16c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,10 @@ cmake_minimum_required(VERSION 3.16) + +if(APPLE) +#配置通用编译 +set(CMAKE_OSX_ARCHITECTURES "arm64;x86_64" CACHE STRING "" FORCE) +endif() + project(FluentUI VERSION 0.1 LANGUAGES CXX) add_subdirectory(src) diff --git a/example/CMakeLists.txt b/example/CMakeLists.txt index 0cfcf11a..f8b04fd5 100644 --- a/example/CMakeLists.txt +++ b/example/CMakeLists.txt @@ -1,5 +1,10 @@ cmake_minimum_required(VERSION 3.16) +if(APPLE) +#配置通用编译 +set(CMAKE_OSX_ARCHITECTURES "arm64;x86_64" CACHE STRING "" FORCE) +endif() + project(example VERSION 0.1 LANGUAGES CXX) set(CMAKE_AUTOMOC ON) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 4cd0e662..c8d169b2 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -1,4 +1,10 @@ cmake_minimum_required(VERSION 3.16) + +if(APPLE) +#配置通用编译 +set(CMAKE_OSX_ARCHITECTURES "arm64;x86_64" CACHE STRING "" FORCE) +endif() + project(fluentui LANGUAGES CXX) set(CMAKE_AUTOMOC ON)