Files
ore-calendar/Makefile
ssig33 64d1afba83 テスト自動化と品質担保の強化
- CalendarServiceに対するユニットテスト(ロード、保存の挙動)を実装
- Makefileにtestターゲットを追加し、コマンドラインからテスト実行を可能化
- Xcodeプロジェクト(yml)にテストターゲット(OreCalendarTests)とtest定義を追加
2025-10-28 16:26:55 +09:00

16 lines
430 B
Makefile

.PHONY: generate build all test
all: build
generate:
xcodegen generate
build: generate
xcodebuild -scheme OreCalendar -destination 'platform=macOS' -derivedDataPath build build
test: generate
xcodebuild test -scheme OreCalendar -destination 'platform=macOS' -derivedDataPath build
release: build
rm -rf ~/Applications/OreCalendar.app ; true
mv build/Build/Products/Release/OreCalendar.app ~/Applications/OreCalendar.app