mirror of
https://github.com/l1npengtul/nokhwa.git
synced 2026-07-09 20:17:26 +00:00
16 lines
227 B
Makefile
16 lines
227 B
Makefile
|
|
all: build
|
|
|
|
.PHONY: app build clean release
|
|
|
|
build:
|
|
@cargo build --features "input-avfoundation"
|
|
|
|
clean:
|
|
@cargo clean
|
|
|
|
release:
|
|
@cargo build --features "input-avfoundation" --release
|
|
|
|
app:
|
|
@cd example-capture && xcodebuild
|