Keychain package

* Added the Keychain package
* Added a Makefile to easily build the package
* Updated the README with additional information
This commit is contained in:
Bram Kolkman
2026-02-20 16:29:50 +01:00
parent f1abe0f69e
commit e31c6b3038
5 changed files with 100 additions and 1 deletions

13
Makefile Normal file
View File

@@ -0,0 +1,13 @@
.PHONY: build resolve clean
build:
@echo "Building Swift package 'Keychain'"
@swift build --package-path Keychain --scratch-path .build
resolve:
@echo "Resolving Swift package dependencies..."
@swift package resolve --package-path Keychain --scratch-path .build
clean:
@echo "Cleaning build artifacts..."
@rm -rf .build Keychain/.swiftpm