Skip to content

Commit 9038994

Browse files
authored
Merge pull request #35 from lorentey/fix-manifest-warnings
[manifest] Fix warnings in 5.3 toolchains
2 parents 46a6952 + b58a624 commit 9038994

File tree

1 file changed

+19
-3
lines changed

1 file changed

+19
-3
lines changed

Package.swift

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,31 @@ let package = Package(
2121
targets: ["Atomics"]),
2222
],
2323
targets: [
24-
.target(name: "_AtomicsShims"),
24+
.target(
25+
name: "_AtomicsShims",
26+
exclude: [
27+
"CMakeLists.txt"
28+
]
29+
),
2530
.target(
2631
name: "Atomics",
27-
dependencies: ["_AtomicsShims"]
32+
dependencies: ["_AtomicsShims"],
33+
exclude: [
34+
"CMakeLists.txt",
35+
"HighLevelTypes.swift.gyb",
36+
"PointerConformances.swift.gyb",
37+
"IntegerConformances.swift.gyb",
38+
"AtomicBool.swift.gyb",
39+
"AtomicLazyReference.swift.gyb",
40+
]
2841
),
2942
.testTarget(
3043
name: "AtomicsTests",
3144
dependencies: ["Atomics"],
32-
exclude: ["main.swift"]
45+
exclude: [
46+
"main.swift",
47+
"Basics.swift.gyb"
48+
]
3349
),
3450
]
3551
)

0 commit comments

Comments
 (0)