Skip to content

Commit

Permalink
Update Package.swift
Browse files Browse the repository at this point in the history
  • Loading branch information
STREGA committed Mar 26, 2024
1 parent 1f85444 commit 50b0e4a
Showing 1 changed file with 13 additions and 8 deletions.
21 changes: 13 additions & 8 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -179,10 +179,15 @@ let package = Package(
.enableUpcomingFeature("ExistentialAny"),
.enableUpcomingFeature("ForwardTrailingClosures"),
.enableUpcomingFeature("ConciseMagicFile"),
.enableUpcomingFeature("DynamicActorIsolation"),
.enableUpcomingFeature("FullTypedThrows"),
.enableUpcomingFeature("InferSendableFromCaptures"),
.enableUpcomingFeature("DeprecateApplicationMain"),

.enableExperimentalFeature("AccessLevelOnImport"),
// .enableExperimentalFeature("StrictConcurrency"),
// .enableExperimentalFeature("StrictConcurrency=complete"),
// .enableExperimentalFeature("StrictConcurrency=minimal"),
.enableExperimentalFeature("StrictConcurrency=complete"),
])
#endif

Expand Down Expand Up @@ -223,13 +228,13 @@ let package = Package(
//.plugin(name: "SwiftLintPlugin", package: "SwiftLint"),
]),

.target(name: "Shaders",
dependencies: [
"GameMath",
.product(name: "Collections", package: "swift-collections")
], swiftSettings: [
.define("GATEENGINE_DEBUG_SHADERS", .when(configuration: .debug))
]),
.target(name: "Shaders",
dependencies: [
"GameMath",
.product(name: "Collections", package: "swift-collections")
], swiftSettings: [
.define("GATEENGINE_DEBUG_SHADERS", .when(configuration: .debug))
]),

.target(name: "GameMath", swiftSettings: {
var array: [SwiftSetting] = []
Expand Down

0 comments on commit 50b0e4a

Please sign in to comment.