[Feature] Some basic core feature #1

Merged
javier merged 3 commits from feature/core into main 2023-04-16 12:27:57 +00:00
3 changed files with 6 additions and 5 deletions
Showing only changes of commit fc1e9d5248 - Show all commits

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"
), ),
] ]
) )