Skip to content

Commit

Permalink
Clean up extra scheme (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
mbrandonw authored Oct 23, 2022
1 parent e8bacbb commit 7379ef3
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 90 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
.DS_Store
/.build
/.swiftpm
/Packages
/*.xcodeproj
xcuserdata/
xcuserdata/
77 changes: 0 additions & 77 deletions .swiftpm/xcode/xcshareddata/xcschemes/Clocks.xcscheme

This file was deleted.

23 changes: 11 additions & 12 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -26,26 +26,25 @@ let package = Package(
name: "Clocks",
dependencies: [
.product(name: "XCTestDynamicOverlay", package: "xctest-dynamic-overlay")
],
swiftSettings: [
.unsafeFlags([
"-Xfrontend", "-warn-concurrency",
"-Xfrontend", "-enable-actor-data-race-checks",
])
]
),
.testTarget(
name: "ClocksTests",
dependencies: [
"Clocks",
.product(name: "AsyncAlgorithms", package: "swift-async-algorithms"),
],
swiftSettings: [
.unsafeFlags([
"-Xfrontend", "-warn-concurrency",
"-Xfrontend", "-enable-actor-data-race-checks",
])
]
),
]
)

//for target in package.targets {
// target.swiftSettings = target.swiftSettings ?? []
// target.swiftSettings?.append(
// .unsafeFlags([
// "-Xfrontend", "-warn-concurrency",
// "-Xfrontend", "-enable-actor-data-race-checks",
// "-enable-library-evolution",
// ])
// )
//}

0 comments on commit 7379ef3

Please sign in to comment.