Skip to content

Commit 60cb835

Browse files
committed
Fix macOS version number, set architectures and deployment target
1 parent 371ce03 commit 60cb835

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

CMakeLists.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@ if(MSVC)
1111
add_compile_options(/MP)
1212
endif()
1313

14-
set(CMAKE_OSX_ARCHITECTURES "x86_64;arm64" CACHE INTERNAL "")
14+
set(CMAKE_OSX_ARCHITECTURES "$(ARCHS_STANDARD)" CACHE INTERNAL "")
15+
set(CMAKE_OSX_DEPLOYMENT_TARGET "10.15" CACHE INTERNAL "")
16+
1517
# linux detection
1618
if(UNIX AND NOT APPLE)
1719
set(LINUX TRUE CACHE INTERNAL "")

source/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<key>CFBundlePackageType</key>
2929
<string>APPL</string>
3030
<key>CFBundleShortVersionString</key>
31-
<string>1.5</string>
31+
<string>1.51</string>
3232
<key>CFBundleSignature</key>
3333
<string>????</string>
3434
<key>CFBundleVersion</key>

0 commit comments

Comments
 (0)