Skip to content

Commit a996a67

Browse files
authored
Bump macOS deployment target to 12 (#174)
1 parent 0055bc7 commit a996a67

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ targetCompatibility = 11
1212

1313
allprojects {
1414
group = "edu.wpi.first"
15-
version = "2024.3.1"
15+
version = "2024.3.2"
1616

1717
if (project.hasProperty('publishVersion')) {
1818
version = project.publishVersion

src/main/java/edu/wpi/first/nativeutils/WPINativeUtilsExtension.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public static class DefaultArguments {
7575
public final List<String> linuxReleaseCompilerArgs = List.of("-O2");
7676
public final List<String> linuxDebugCompilerArgs = List.of("-O0");
7777

78-
public final String macMinimumVersionArg = "-mmacosx-version-min=10.15";
78+
public final String macMinimumVersionArg = "-mmacosx-version-min=12";
7979

8080
public final List<String> macCompilerArgs = List.of("-std=c++20", "-pedantic", "-fPIC", "-Wno-unused-parameter",
8181
"-Wno-error=deprecated-enum-enum-conversion", "-Wno-missing-field-initializers",

testing/cpp/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import edu.wpi.first.toolchain.NativePlatforms
22

33
plugins {
44
id "cpp"
5-
id "edu.wpi.first.NativeUtils" version "2024.3.1"
5+
id "edu.wpi.first.NativeUtils" version "2024.3.2"
66
}
77

88
nativeUtils.addWpiNativeUtils()

0 commit comments

Comments
 (0)