noita_entangled_worlds/Justfile

30 lines
1,021 B
Makefile
Raw Normal View History

2024-07-20 12:11:07 +03:00
extract_steam_redist:
python scripts/extract_steam_redist.py
add_dylib_debug: extract_steam_redist
2024-07-22 17:41:45 +03:00
mkdir noita-proxy/target/debug/ -p
2024-07-20 12:11:07 +03:00
cp target/tmp/libsteam_api.so noita-proxy/target/debug/
add_dylib_release: extract_steam_redist
2024-07-22 17:41:45 +03:00
mkdir noita-proxy/target/release/ -p
2024-07-20 12:11:07 +03:00
cp target/tmp/libsteam_api.so noita-proxy/target/release/
2024-06-05 16:22:03 +03:00
2024-07-18 13:15:21 +03:00
build:
cd noita-proxy && cargo build
2024-07-18 13:15:21 +03:00
cd noita-proxy && cargo build --release
2024-07-20 12:11:07 +03:00
run-rel: add_dylib_release
2024-06-06 15:25:01 +03:00
cd noita-proxy && NP_APPID=480 NP_SKIP_MOD_CHECK=1 cargo run --release
2024-07-20 12:11:07 +03:00
run: add_dylib_debug
cd noita-proxy && NP_APPID=480 NP_SKIP_MOD_CHECK=1 cargo run
2024-07-03 21:34:08 +03:00
2024-07-20 12:11:07 +03:00
run2: add_dylib_debug
2024-07-08 12:38:20 +03:00
cd noita-proxy && NP_APPID=480 NP_SKIP_MOD_CHECK=1 NP_NOITA_ADDR=127.0.0.1:21252 cargo run -- --launch-cmd "wine noita.exe -gamemode 0"
2024-06-11 11:16:44 +03:00
2024-07-20 12:11:07 +03:00
run3: add_dylib_debug
2024-07-18 15:31:36 +03:00
cd noita-proxy && NP_APPID=480 NP_SKIP_MOD_CHECK=1 NP_NOITA_ADDR=127.0.0.1:21253 cargo run -- --launch-cmd "wine noita.exe -gamemode 0"
2024-07-20 12:11:07 +03:00
release: build add_dylib_release
python scripts/prepare_release.py