* update: enable message loop work for Windows and Linux * update: upgrade Bevy to version 0.18 and adjust asset loader for path handling * update: rename bevy_picking to picking in Cargo.toml * update: remove pull_request trigger from CI and change AmbientLight to GlobalAmbientLight * update: remove demo example from workspace and exclude it from tests * update: remove demo package from Cargo.lock * update: refactor paths and dependencies for Chromium Embedded Framework integration * fmt * update: remove unnecessary type casting for event flags in mouse and keyboard handling * update: remove unnecessary type casting for event flags in mouse and keyboard handling * update: comment out GPU-related command line switches in app.rs * update: allow unnecessary cast lint warning in mouse button modifiers test --------- Co-authored-by: not-elm <elmgameinfo@gmail.com>
19 lines
539 B
Makefile
19 lines
539 B
Makefile
.PHONY: fix install
|
|
|
|
BIN := bevy_cef_debug_render_process
|
|
CEF_LIB := $(HOME)/.local/share/Chromium Embedded Framework.framework/Libraries
|
|
|
|
|
|
.PHONY: fix install
|
|
|
|
BIN := bevy_cef_debug_render_process
|
|
CEF_LIB := $(HOME)/.local/share/Chromium Embedded Framework.framework/Libraries
|
|
CARGO_BIN := $(HOME)/.cargo/bin
|
|
|
|
fix:
|
|
cargo clippy --fix --allow-dirty --allow-staged --workspace --all --all-features
|
|
cargo fmt --all
|
|
|
|
install:
|
|
cargo install --path ./crates/bevy_cef_debug_render_process --force
|
|
mv "$(CARGO_BIN)/$(BIN)" "$(CEF_LIB)/$(BIN)"
|