diff options
author | Damiano Galassi <[email protected]> | 2018-08-23 17:06:54 +0200 |
---|---|---|
committer | Damiano Galassi <[email protected]> | 2018-08-23 17:06:54 +0200 |
commit | abe12fe7a7798e2beb04bc73d1437f5b02be5802 (patch) | |
tree | 5f7bbbb2e876adb761623ef615e49083e50faff1 /macosx | |
parent | b703c42420c4e832d86596c2cd9194ea4644b3c3 (diff) |
Set the macOS deployment target to 10.10 when building from the cli.
Diffstat (limited to 'macosx')
-rw-r--r-- | macosx/xcconfig/base/os.osx1010.xcconfig | 1 | ||||
-rw-r--r-- | macosx/xcconfig/osx1010.i386.xcconfig | 3 | ||||
-rw-r--r-- | macosx/xcconfig/osx1010.x86_64.xcconfig | 3 |
3 files changed, 7 insertions, 0 deletions
diff --git a/macosx/xcconfig/base/os.osx1010.xcconfig b/macosx/xcconfig/base/os.osx1010.xcconfig new file mode 100644 index 000000000..e6a6a4eb3 --- /dev/null +++ b/macosx/xcconfig/base/os.osx1010.xcconfig @@ -0,0 +1 @@ +MACOSX_DEPLOYMENT_TARGET = 10.10 diff --git a/macosx/xcconfig/osx1010.i386.xcconfig b/macosx/xcconfig/osx1010.i386.xcconfig new file mode 100644 index 000000000..beb8e3335 --- /dev/null +++ b/macosx/xcconfig/osx1010.i386.xcconfig @@ -0,0 +1,3 @@ +#include "base/os.osx1010.xcconfig" +#include "base/arch.i386.xcconfig" +EXTERNAL_XCCONFIG = osx1010.i386 diff --git a/macosx/xcconfig/osx1010.x86_64.xcconfig b/macosx/xcconfig/osx1010.x86_64.xcconfig new file mode 100644 index 000000000..5f17649c5 --- /dev/null +++ b/macosx/xcconfig/osx1010.x86_64.xcconfig @@ -0,0 +1,3 @@ +#include "base/os.osx1010.xcconfig" +#include "base/arch.x86_64.xcconfig" +EXTERNAL_XCCONFIG = osx1010.x86_64 |