summaryrefslogtreecommitdiff
path: root/justfile
blob: b7c549e1455921d0daf0188cbc08b05854d15ac0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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}}

install location="/Users/${USER}/Applications" derived_data='/Users/${USER}/Library/Developer/Xcode/DerivedData':
  cp -r {{derived_data}}/{{target}}-*/Build/Products/Release/{{target}}.app {{location}}