From 13308d009db1ef63fd22c09c89d49e5d44bf2fd5 Mon Sep 17 00:00:00 2001 From: Inojelis Date: Mon, 21 Feb 2022 03:33:58 +0200 Subject: [PATCH] Fix run config --- .cargo/config | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/.cargo/config b/.cargo/config index 8dc522821b..b273b3ab81 100644 --- a/.cargo/config +++ b/.cargo/config @@ -4,19 +4,21 @@ rustflags = [ ] [alias] +# tools cmd-doc-gen = "run --features=bin_cmd_doc_gen --bin cmd_doc_gen" csv-export = "run --manifest-path common/Cargo.toml --features=bin_csv --bin csv_export" csv-import = "run --manifest-path common/Cargo.toml --features=bin_csv --bin csv_import" -test-server = "run --bin veloren-server-cli --no-default-features --features simd" -tracy-server = "-Zunstable-options run --bin veloren-server-cli --no-default-features --features tracy,simd --profile no_overflow" -tracy-world-server = "-Zunstable-options run --bin veloren-server-cli --features tracy,simd --profile no_overflow" -tracy-world-server-releasedebuginfo = "-Zunstable-options run --bin veloren-server-cli --features tracy,simd --profile releasedebuginfo" -test-voxygen = "run --bin veloren-voxygen --no-default-features --features simd,egui-ui" -tracy-voxygen = "-Zunstable-options run --bin veloren-voxygen --no-default-features --features tracy,simd,egui-ui --profile no_overflow" +# server-cli server = "run --bin veloren-server-cli" -dbg-voxygen = "run --bin veloren-voxygen -Zunstable-options --profile debuginfo" +test-server = "run --bin veloren-server-cli --no-default-features --features simd" +tracy-server = "run --bin veloren-server-cli --no-default-features --features tracy,simd --profile no_overflow" +tracy-world-server = "run --bin veloren-server-cli --features tracy,simd --profile no_overflow" +tracy-world-server-debuginfo = "run --bin veloren-server-cli --features tracy,simd --profile no_overflow_debuginfo" +tracy-world-server-releasedebuginfo = "run --bin veloren-server-cli --features tracy,simd --profile releasedebuginfo" +# voxygen +test-voxygen = "run --bin veloren-voxygen --no-default-features --features simd,egui-ui,shaderc-from-source" +tracy-voxygen = "run --bin veloren-voxygen --no-default-features --features tracy,simd,egui-ui,shaderc-from-source --profile no_overflow" +dbg-voxygen = "run --bin veloren-voxygen --profile debuginfo" +# misc swarm = "run --bin swarm --features client/bin_bot,client/tick_network --" - -[env] -RUSTC_FORCE_INCREMENTAL = "1"