summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--justfile15
2 files changed, 16 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index b99acf6..5623a01 100644
--- a/.gitignore
+++ b/.gitignore
@@ -15,4 +15,5 @@ build/
# Other
.DS_Store
+*.just
diff --git a/justfile b/justfile
new file mode 100644
index 0000000..6ed528d
--- /dev/null
+++ b/justfile
@@ -0,0 +1,15 @@
+import? 'xcode.just'
+
+target := 'Sora'
+
+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}}