-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
meta: repo cleanups, scripts, kak file
- Loading branch information
Showing
6 changed files
with
45 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/bin/sh | ||
cargo build -p mw_hostsrv -p mw_hostrpc \ | ||
--config ./.cargo/config-cross.toml \ | ||
--target x86_64-pc-windows-gnu \ | ||
--features proprietary && | ||
cp ./target-cross/x86_64-pc-windows-gnu/debug/mw_hostsrv.exe ./target-cross/x86_64-pc-windows-gnu/debug/mw_hostrpc.exe . && | ||
exec ./mw_hostsrv.exe "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
set global lsp_config %{ | ||
[language.rust.settings.rust-analyzer] | ||
# cargo.target = "x86_64-pc-windows-gnu" | ||
# checkOnSave.allTargets = false | ||
cargo.features = [ "proprietary", "dev" ] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/bin/sh | ||
|
||
export RUST_LOG="mw_host=trace,mw_hostsrv=trace" | ||
cargo b -p mw_hostrpc && | ||
cp ./target/debug/mw_hostrpc . && | ||
exec cargo r -p mw_hostsrv --features proprietary -- "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/bin/sh | ||
|
||
exec cargo r --features dev,proprietary |