Skip to content

Commit

Permalink
Properly exclude MXResources paths for 3cca7eb
Browse files Browse the repository at this point in the history
  • Loading branch information
furby-tm committed Dec 9, 2023
1 parent 3cca7eb commit c6c4e64
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -258,14 +258,18 @@ let package = Package(

.target(
name: "MXResources",
resources: [
exclude: [
// FIXME
// .copy("libraries"),
// .process("Resources"),
// temporary workaround for metal shaders
// erroring on compilation, so we don't
// gunk up SwiftUSD and everything else.
.process("Images")
"libraries",
"Resources/Lights",
"Resources/Geometry",
"Resources/Materials",
],
resources: [
.process("Resources/Images")
],
swiftSettings: [
.interoperabilityMode(.Cxx),
Expand Down

0 comments on commit c6c4e64

Please sign in to comment.