Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- debug:
- ifeq ($(OS),Windows_NT)
- cd src-tauri/lovely-injector/crates/lovely-win && cargo build --release && cd $(CURDIR) && cargo tauri dev
- else
- clear
- RUST_LOG=debug cd src-tauri/lovely-injector/crates/lovely-mac && rm -f ../../target/release/liblovely.d* && SKIP_BUILD_SCRIPT=1 cargo build --release && cd $(CURDIR) && cargo tauri dev
- endif
- release:
- ifeq ($(OS),Windows_NT)
- cd src-tauri/lovely-injector/crates/lovely-win && set SKIP_BUILD_SCRIPT=1 && cargo build --release && cd $(CURDIR) && cargo tauri build
- else
- clear
- cd src-tauri/lovely-injector/crates/lovely-mac && rm -f ../../target/release/liblovely.d* && SKIP_BUILD_SCRIPT=1 cargo build --release && cd $(CURDIR) && cargo tauri build --verbose
- endif
- clean:
- cd ./src-tauri && cargo clean
- ifeq ($(OS),Windows_NT)
- cd ./src-tauri/lovely-injector/crates/lovely-win && cargo clean
- else
- cd ./src-tauri/lovely-injector/crates/lovely-mac && cargo clean
- endif
Advertisement
Add Comment
Please, Sign In to add comment