File tree 1 file changed +7
-3
lines changed
1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -30,20 +30,24 @@ let package = Package(
30
30
// Targets can depend on other targets in this package, and on products in packages this package depends on.
31
31
. target(
32
32
name: " DJSwiftHelpers " ,
33
- path: " Sources/Common/ "
33
+ path: " Sources/Common/ " ,
34
+ linkerSettings: [
35
+ . unsafeFlags( [ " -Xlinker " , " -no_application_extension " ] )
36
+ ]
34
37
) ,
35
38
. target(
36
39
name: " DJSwiftHelpers_UIKit " ,
37
40
path: " Sources/UIKit/ " ,
38
41
linkerSettings: [
39
- . linkedFramework( " UIKit " , . when( platforms: [ . iOS] ) )
42
+ . linkedFramework( " UIKit " , . when( platforms: [ . iOS] ) ) ,
40
43
]
41
44
) ,
42
45
. target(
43
46
name: " DJSwiftHelpers_SwiftUI " ,
44
47
path: " Sources/SwiftUI/ " ,
45
48
linkerSettings: [
46
- . linkedFramework( " SwiftUI " )
49
+ . linkedFramework( " SwiftUI " ) ,
50
+ . unsafeFlags( [ " -Xlinker " , " -no_application_extension " ] )
47
51
]
48
52
)
49
53
]
You can’t perform that action at this time.
0 commit comments