Restructured the folder structure of the executable target.

This commit is contained in:
Javier Cicchelli 2025-01-17 23:19:01 +01:00
parent 94e28a324b
commit 6955d816ef
4 changed files with 5 additions and 5 deletions

View File

@ -33,15 +33,15 @@ let package = Package(
), ),
.target(name: "ColibriLibrary") .target(name: "ColibriLibrary")
], ],
path: "Sources/Executable", path: "Executable"
resources: [
.copy("Resources/")
]
), ),
.target( .target(
name: "ColibriLibrary", name: "ColibriLibrary",
dependencies: [], dependencies: [],
path: "Sources/Library" path: "Sources/Library",
resources: [
.copy("Resources/Files/LICENSE")
]
), ),
.testTarget( .testTarget(
name: "ColibriTests", name: "ColibriTests",