Skip to content

Commit

Permalink
Bump minimum macOS version to 13
Browse files Browse the repository at this point in the history
  • Loading branch information
cmsj committed Sep 19, 2024
1 parent 278042b commit df61bbd
Show file tree
Hide file tree
Showing 8 changed files with 292 additions and 295 deletions.
2 changes: 1 addition & 1 deletion Hammerspoon/Build Configs/Project-Base.xcconfig
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
// Base SDK
SDKROOT = macosx
// macOS Deployment Target
MACOSX_DEPLOYMENT_TARGET = 12.0
MACOSX_DEPLOYMENT_TARGET = 13.0
// Build Active Architecture Only
ONLY_ACTIVE_ARCH = YES

Expand Down
2 changes: 1 addition & 1 deletion LuaSkin/LuaSkin-Base.xcconfig
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
// Base SDK
SDKROOT = macosx
// macOS Deployment Target
MACOSX_DEPLOYMENT_TARGET = 12.0
MACOSX_DEPLOYMENT_TARGET = 13.0
// Build Active Architecture Only
ONLY_ACTIVE_ARCH = YES

Expand Down
3 changes: 0 additions & 3 deletions LuaSkin/LuaSkin.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -695,7 +695,6 @@
);
INFOPLIST_FILE = LuaSkinTests/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks";
MACOSX_DEPLOYMENT_TARGET = 12.0;
PRODUCT_BUNDLE_IDENTIFIER = "org.hammerspoon.$(PRODUCT_NAME:rfc1034identifier)";
PRODUCT_NAME = "$(TARGET_NAME)";
WARNING_CFLAGS = "";
Expand Down Expand Up @@ -848,7 +847,6 @@
);
INFOPLIST_FILE = LuaSkinTests/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks";
MACOSX_DEPLOYMENT_TARGET = 12.0;
PRODUCT_BUNDLE_IDENTIFIER = "org.hammerspoon.$(PRODUCT_NAME:rfc1034identifier)";
PRODUCT_NAME = "$(TARGET_NAME)";
WARNING_CFLAGS = "";
Expand All @@ -865,7 +863,6 @@
);
INFOPLIST_FILE = LuaSkinTests/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks";
MACOSX_DEPLOYMENT_TARGET = 12.0;
PRODUCT_BUNDLE_IDENTIFIER = "org.hammerspoon.$(PRODUCT_NAME:rfc1034identifier)";
PRODUCT_NAME = "$(TARGET_NAME)";
WARNING_CFLAGS = "";
Expand Down
6 changes: 3 additions & 3 deletions Podfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Uncomment this line to define a global platform for your project
platform :osx, '12.0'
platform :osx, '13.0'

inhibit_all_warnings!

Expand All @@ -26,8 +26,8 @@ post_install do |installer|

target.build_configurations.each do |config|
config.build_settings['ENABLE_NS_ASSERTIONS'] = 'YES'
if ['10.6', '10.7', '10.8', '10.9', '10.10', '10.11', '10.15', '11.0', '11.1', '11.2', '11.3', '11.4', '11.5'].include? config.build_settings['MACOSX_DEPLOYMENT_TARGET']
config.build_settings['MACOSX_DEPLOYMENT_TARGET'] = '12.0'
if ['10.6', '10.7', '10.8', '10.9', '10.10', '10.11', '10.12', '10.13', '10.14', '10.15', '11.0', '11.1', '11.2', '11.3', '11.4', '11.5', '12.0'].include? config.build_settings['MACOSX_DEPLOYMENT_TARGET']
config.build_settings['MACOSX_DEPLOYMENT_TARGET'] = '13.0'
end
end

Expand Down
2 changes: 1 addition & 1 deletion Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,6 @@ SPEC CHECKSUMS:
SocketRocket: d4aabe649be1e368d1318fdf28a022d714d65748
Sparkle: 5f8960a7a119aa7d45dacc0d5837017170bc5675

PODFILE CHECKSUM: 5429f3540070c2b3d3b99be8fa2bf289a5b5db02
PODFILE CHECKSUM: 62fad4323b6e7a15a8190b62cddcaa4cb0408157

COCOAPODS: 1.15.2
2 changes: 1 addition & 1 deletion Pods/Manifest.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit df61bbd

Please sign in to comment.