Skip to content

Commit 787f2ae

Browse files
committed
support for macos intel no update needed for version
1 parent f1e1590 commit 787f2ae

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,6 @@ build/
33
.vs/
44
.vscode/
55
*.user
6+
.github/copilot-instructions.md
7+
CMakeUserPresets.json
68

CMakeLists.txt

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
cmake_minimum_required(VERSION 3.21)
2-
project(bulkchestopen VERSION 1.0.0)
3-
42
set(CMAKE_CXX_STANDARD 20)
53
set(CMAKE_CXX_STANDARD_REQUIRED ON)
4+
set(CMAKE_OSX_ARCHITECTURES "arm64;x86_64")
5+
set(CMAKE_CXX_VISIBILITY_PRESET hidden)
6+
7+
project(bulkchestopen VERSION 1.0.0)
68

79
add_library(${PROJECT_NAME} SHARED
810
src/main.cpp

0 commit comments

Comments
 (0)