Basic project creation #3

Merged
javier merged 64 commits from feature/create-basic-project into main 2025-01-28 00:07:25 +00:00
9 changed files with 4 additions and 2 deletions
Showing only changes of commit 640683063e - Show all commits
+4 -2
View File
@@ -45,8 +45,10 @@ let package = Package(
), ),
.testTarget( .testTarget(
name: "ColibriTests", name: "ColibriTests",
dependencies: ["ColibriLibrary"], dependencies: [
path: "Tests/Library" .target(name: "ColibriLibrary")
],
path: "Test"
) )
] ]
) )