diff options
| -rw-r--r-- | .gitignore | 2 | ||||
| -rw-r--r-- | Makefile | 16 | ||||
| -rw-r--r-- | justfile | 15 |
3 files changed, 17 insertions, 16 deletions
@@ -15,3 +15,5 @@ build/ # Other .DS_Store +*.just + diff --git a/Makefile b/Makefile deleted file mode 100644 index bb980c2..0000000 --- a/Makefile +++ /dev/null @@ -1,16 +0,0 @@ -.PHONY: default lint format clean build - -default: format lint build - -format: - swiftformat . - -lint: - swiftlint - -clean: - xcodebuild clean - -build: - xcodebuild -configuration Release -scheme HoloBar clean build - diff --git a/justfile b/justfile new file mode 100644 index 0000000..5053c68 --- /dev/null +++ b/justfile @@ -0,0 +1,15 @@ +import? 'xcode.just' + +target := 'HoloBar' + +fetch: + curl https://raw.githubusercontent.com/Fuwn/justfiles/refs/heads/main/xcode.just > xcode.just + +format: + just _format {{target}} + +build: + just _build {{target}} + +open: + just _open {{target}} |