* Added the Keychain package * Added a Makefile to easily build the package * Added a Gitea pull request action * Updated the README with additional information Co-authored-by: Bram Kolkman <bramkolkman@thinkerium.com> Reviewed-on: #1
14 lines
347 B
Makefile
14 lines
347 B
Makefile
.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
|