Skip to content

Commit 38772db

Browse files
committed
Fixed SKIP_INSTALL
1 parent 259988f commit 38772db

File tree

5 files changed

+27
-9
lines changed

5 files changed

+27
-9
lines changed

Projects/Project.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ let project = Project(
3535
configurations: [
3636
.debug(name: "Debug", xcconfig: "Resources/P256K/Debug.xcconfig"),
3737
.release(name: "Release", xcconfig: "Resources/P256K/Release.xcconfig")
38-
]
38+
],
39+
defaultSettings: .recommended(excluding: ["SKIP_INSTALL"])
3940
)
4041
),
4142
.target(

Projects/Resources/P256K/Debug.xcconfig

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,4 +66,15 @@ ENABLE_TESTABILITY = YES
6666
//
6767
// If enabled, perform validation checks on the product as part of the build process.
6868

69-
VALIDATE_PRODUCT = NO
69+
VALIDATE_PRODUCT = NO
70+
71+
//********************************************//
72+
//* Deployment *//
73+
//********************************************//
74+
75+
76+
// Skip Install
77+
//
78+
// If enabled, don't install built products even if deployment locations are active.
79+
80+
SKIP_INSTALL = YES

Projects/Resources/P256K/Release.xcconfig

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,18 @@ ENABLE_TESTABILITY = NO
6969
VALIDATE_PRODUCT = YES
7070

7171

72+
//********************************************//
73+
//* Deployment *//
74+
//********************************************//
75+
76+
77+
// Skip Install
78+
//
79+
// If enabled, don't install built products even if deployment locations are active.
80+
81+
SKIP_INSTALL = NO
82+
83+
7284
//********************************************//
7385
//* Apple Clang - Code Generation *//
7486
//********************************************//

Projects/Resources/P256K/Shared.xcconfig

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,6 @@ ENABLE_USER_SCRIPT_SANDBOXING = YES
4141
//********************************************//
4242

4343

44-
// Skip Install
45-
//
46-
// If enabled, don't install built products even if deployment locations are active.
47-
48-
SKIP_INSTALL = YES
49-
5044
// Targeted Device Families
5145
//
5246
// Comma-separated list of integers corresponding to device families supported by this

Projects/Resources/Project/Release.xcconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@ SWIFT_COMPILATION_MODE = wholemodule
3333
// * Optimize for Size: [-Osize]
3434
// * Whole Module Optimization: [-O -whole-module-optimization]
3535

36-
SWIFT_OPTIMIZATION_LEVEL = -O -whole-module-optimization
36+
SWIFT_OPTIMIZATION_LEVEL = -O -whole-module-optimization

0 commit comments

Comments
 (0)