mirror of
https://github.com/l1npengtul/nokhwa.git
synced 2026-07-11 20:48:53 +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
|