How to link binary resources folder in package.swift file from Swift Playgrounds. Given that I cant manually edit the package.swift file. How do I navigate to resolve this? Currently, my targets looks like this:
targets: [
.executableTarget(
name: "AppModule",
path: "."
)
]
I would like to link the resources folder like this:
targets: [
.executableTarget(
name: "AppModule",
path: ".",
resources: [
.process("Resources")
]
)
]
Playground Version: 4.3
Please let me know.
I am few hours away from the swift student challenge submission.
Kindly acknowledge.
PLEASE HELP!!!