Defined the Core library in the package.

This commit is contained in:
Javier Cicchelli 2023-04-15 01:20:13 +02:00
parent 07521d4e93
commit fc1e9d5248
3 changed files with 6 additions and 5 deletions

View File

@ -8,22 +8,23 @@ let package = Package(
.library( .library(
name: "SwiftLibs", name: "SwiftLibs",
targets: [ targets: [
"SwiftLibs" "Core"
] ]
), ),
], ],
dependencies: [], dependencies: [],
targets: [ targets: [
.target( .target(
name: "SwiftLibs", name: "Core",
dependencies: [ dependencies: [
] ]
), ),
.testTarget( .testTarget(
name: "SwiftLibsTests", name: "CoreTests",
dependencies: [ dependencies: [
"SwiftLibs" "Core"
] ],
path: "Tests/Core"
), ),
] ]
) )