Skip to content

Commit bb75620

Browse files
committed
Fix xcconfig override issue
1 parent defe00d commit bb75620

File tree

7 files changed

+11
-6
lines changed

7 files changed

+11
-6
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
#include "basic/OpenSwiftUI.xcconfig"
22
#include "basic/debug.xcconfig"
3+
#include "basic/common.xcconfig"
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
#include "basic/OpenSwiftUI.xcconfig"
22
#include "basic/release.xcconfig"
3+
#include "basic/common.xcconfig"
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
#include "basic/SwiftUI.xcconfig"
22
#include "basic/debug.xcconfig"
3+
#include "basic/common.xcconfig"
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
#include "basic/SwiftUI.xcconfig"
22
#include "basic/release.xcconfig"
3+
#include "basic/common.xcconfig"
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) OPENSWIFTUI=1
2-
SWIFT_ACTIVE_COMPILATION_CONDITIONS = $(inherited) OPENSWIFTUI
1+
GCC_PREPROCESSOR_DEFINITIONS_OPENSWIFTUI = OPENSWIFTUI=1
2+
SWIFT_ACTIVE_COMPILATION_CONDITIONS_OPENSWIFTUI = OPENSWIFTUI
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
IPHONEOS_DEPLOYMENT_TARGET = 18.0
22
MACOSX_DEPLOYMENT_TARGET = 15.0
3+
4+
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) $(GCC_PREPROCESSOR_DEFINITIONS_OPENSWIFTUI) $(GCC_PREPROCESSOR_DEFINITIONS_DEBUG)
5+
SWIFT_ACTIVE_COMPILATION_CONDITIONS = $(inherited) $(SWIFT_ACTIVE_COMPILATION_CONDITIONS_OPENSWIFTUI) $(SWIFT_ACTIVE_COMPILATION_CONDITIONS_DEBUG)
Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,2 @@
1-
#include "common.xcconfig"
2-
3-
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) DEBUG=1
4-
SWIFT_ACTIVE_COMPILATION_CONDITIONS = $(inherited) DEBUG
1+
GCC_PREPROCESSOR_DEFINITIONS_DEBUG = DEBUG=1
2+
SWIFT_ACTIVE_COMPILATION_CONDITIONS_DEBUG = DEBUG

0 commit comments

Comments
 (0)