-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
23 lines (16 loc) · 684 Bytes
/
Copy pathMakefile
File metadata and controls
23 lines (16 loc) · 684 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
.PHONY: generate build run clean editor-libs test test-restoration-policy
editor-libs:
bash scripts/build-editor.sh
generate:
xcodegen generate
build: generate
xcodebuild -project QMark.xcodeproj -scheme QMark -configuration Debug -derivedDataPath build build
test: test-restoration-policy
test-restoration-policy:
swiftc -parse-as-library QMark/WindowRestorationPolicy.swift scripts/test-window-restoration-policy.swift -o /tmp/qmark-window-restoration-policy-test
/tmp/qmark-window-restoration-policy-test
run: build
open build/Build/Products/Debug/QMark.app
clean:
rm -rf build DerivedData
xcodebuild -project QMark.xcodeproj -scheme QMark clean 2>/dev/null || true