mirror of
https://github.com/LGUG2Z/komorebi.git
synced 2026-04-23 00:58:37 +02:00
build(cargo): add custom build profiles
This commit is contained in:
13
Cargo.toml
13
Cargo.toml
@@ -71,3 +71,16 @@ features = [
|
|||||||
"Media",
|
"Media",
|
||||||
"Media_Control"
|
"Media_Control"
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[profile.dev-jeezy]
|
||||||
|
inherits = "dev"
|
||||||
|
debug = false
|
||||||
|
opt-level = 1
|
||||||
|
|
||||||
|
[profile.dev-jeezy.package."*"]
|
||||||
|
opt-level = 3
|
||||||
|
|
||||||
|
[profile.release-jeezy]
|
||||||
|
inherits = "release"
|
||||||
|
incremental = true
|
||||||
|
codegen-units = 256
|
||||||
13
justfile
13
justfile
@@ -28,13 +28,22 @@ build-targets *targets:
|
|||||||
"{{ targets }}" -split ' ' | ForEach-Object { just build-target $_ }
|
"{{ targets }}" -split ' ' | ForEach-Object { just build-target $_ }
|
||||||
|
|
||||||
build-target target:
|
build-target target:
|
||||||
cargo +stable build --release --package {{ target }} --locked
|
cargo +stable build --package {{ target }} --locked --profile release-jeezy
|
||||||
|
|
||||||
build:
|
build:
|
||||||
just build-targets komorebic komorebic-no-console komorebi komorebi-bar komorebi-gui
|
just build-targets komorebic komorebic-no-console komorebi komorebi-bar komorebi-gui
|
||||||
|
|
||||||
|
copy-target target:
|
||||||
|
cp .\target\release-jeezy\{{ target }}.exe $Env:USERPROFILE\.cargo\bin
|
||||||
|
|
||||||
|
copy-targets *targets:
|
||||||
|
"{{ targets }}" -split ' ' | ForEach-Object { just copy-target $_ }
|
||||||
|
|
||||||
|
copy:
|
||||||
|
just copy-targets komorebic komorebic-no-console komorebi komorebi-bar komorebi-gui
|
||||||
|
|
||||||
run target:
|
run target:
|
||||||
cargo +stable run --bin {{ target }} --locked
|
cargo +stable run --bin {{ target }} --locked --profile dev-jeezy
|
||||||
|
|
||||||
warn target $RUST_LOG="warn":
|
warn target $RUST_LOG="warn":
|
||||||
just run {{ target }}
|
just run {{ target }}
|
||||||
|
|||||||
Reference in New Issue
Block a user