diff options
Diffstat (limited to 'macosx/xcconfig')
-rw-r--r-- | macosx/xcconfig/base/arch.i386.xcconfig | 1 | ||||
-rw-r--r-- | macosx/xcconfig/base/arch.native.xcconfig | 1 | ||||
-rw-r--r-- | macosx/xcconfig/base/arch.x86_64.xcconfig | 1 | ||||
-rw-r--r-- | macosx/xcconfig/base/os.osx106.xcconfig | 2 | ||||
-rw-r--r-- | macosx/xcconfig/base/os.osx107.xcconfig | 2 | ||||
-rw-r--r-- | macosx/xcconfig/native.xcconfig | 2 | ||||
-rw-r--r-- | macosx/xcconfig/osx106.i386.xcconfig | 3 | ||||
-rw-r--r-- | macosx/xcconfig/osx106.x86_64.xcconfig | 3 | ||||
-rw-r--r-- | macosx/xcconfig/osx107.i386.xcconfig | 3 | ||||
-rw-r--r-- | macosx/xcconfig/osx107.x86_64.xcconfig | 3 |
10 files changed, 21 insertions, 0 deletions
diff --git a/macosx/xcconfig/base/arch.i386.xcconfig b/macosx/xcconfig/base/arch.i386.xcconfig new file mode 100644 index 000000000..8f2cab54b --- /dev/null +++ b/macosx/xcconfig/base/arch.i386.xcconfig @@ -0,0 +1 @@ +ARCHS = i386 diff --git a/macosx/xcconfig/base/arch.native.xcconfig b/macosx/xcconfig/base/arch.native.xcconfig new file mode 100644 index 000000000..deda7892e --- /dev/null +++ b/macosx/xcconfig/base/arch.native.xcconfig @@ -0,0 +1 @@ +ARCHS = $(NATIVE_ARCH_ACTUAL) diff --git a/macosx/xcconfig/base/arch.x86_64.xcconfig b/macosx/xcconfig/base/arch.x86_64.xcconfig new file mode 100644 index 000000000..1d72e614a --- /dev/null +++ b/macosx/xcconfig/base/arch.x86_64.xcconfig @@ -0,0 +1 @@ +ARCHS = x86_64 diff --git a/macosx/xcconfig/base/os.osx106.xcconfig b/macosx/xcconfig/base/os.osx106.xcconfig new file mode 100644 index 000000000..c7f502a57 --- /dev/null +++ b/macosx/xcconfig/base/os.osx106.xcconfig @@ -0,0 +1,2 @@ +SDKROOT = macosx10.6 +MACOSX_DEPLOYMENT_TARGET = 10.6 diff --git a/macosx/xcconfig/base/os.osx107.xcconfig b/macosx/xcconfig/base/os.osx107.xcconfig new file mode 100644 index 000000000..6dfd2d540 --- /dev/null +++ b/macosx/xcconfig/base/os.osx107.xcconfig @@ -0,0 +1,2 @@ +SDKROOT = macosx10.7 +MACOSX_DEPLOYMENT_TARGET = 10.7 diff --git a/macosx/xcconfig/native.xcconfig b/macosx/xcconfig/native.xcconfig new file mode 100644 index 000000000..d88c8c44f --- /dev/null +++ b/macosx/xcconfig/native.xcconfig @@ -0,0 +1,2 @@ +#include "base/arch.native.xcconfig" +EXTERNAL_XCCONFIG = native diff --git a/macosx/xcconfig/osx106.i386.xcconfig b/macosx/xcconfig/osx106.i386.xcconfig new file mode 100644 index 000000000..1f0edd35a --- /dev/null +++ b/macosx/xcconfig/osx106.i386.xcconfig @@ -0,0 +1,3 @@ +#include "base/os.osx106.xcconfig" +#include "base/arch.i386.xcconfig" +EXTERNAL_XCCONFIG = osx106.i386 diff --git a/macosx/xcconfig/osx106.x86_64.xcconfig b/macosx/xcconfig/osx106.x86_64.xcconfig new file mode 100644 index 000000000..cc9606ef7 --- /dev/null +++ b/macosx/xcconfig/osx106.x86_64.xcconfig @@ -0,0 +1,3 @@ +#include "base/os.osx106.xcconfig" +#include "base/arch.x86_64.xcconfig" +EXTERNAL_XCCONFIG = osx106.x86_64 diff --git a/macosx/xcconfig/osx107.i386.xcconfig b/macosx/xcconfig/osx107.i386.xcconfig new file mode 100644 index 000000000..6b19b287b --- /dev/null +++ b/macosx/xcconfig/osx107.i386.xcconfig @@ -0,0 +1,3 @@ +#include "base/os.osx107.xcconfig" +#include "base/arch.i386.xcconfig" +EXTERNAL_XCCONFIG = osx107.i386 diff --git a/macosx/xcconfig/osx107.x86_64.xcconfig b/macosx/xcconfig/osx107.x86_64.xcconfig new file mode 100644 index 000000000..d1c434e45 --- /dev/null +++ b/macosx/xcconfig/osx107.x86_64.xcconfig @@ -0,0 +1,3 @@ +#include "base/os.osx107.xcconfig" +#include "base/arch.x86_64.xcconfig" +EXTERNAL_XCCONFIG = osx107.x86_64 |