From 252b5af96f969d780ab732d4ee8fa8baa49512b9 Mon Sep 17 00:00:00 2001 From: Imbris Date: Fri, 15 Oct 2021 00:57:20 -0400 Subject: [PATCH] Add alias for running the server with tracy with the releasedebuginfo profile, this is potentially useful for some of Tracy's source view features --- .cargo/config | 1 + 1 file changed, 1 insertion(+) diff --git a/.cargo/config b/.cargo/config index 686f74a4b0..f85f7ca37c 100644 --- a/.cargo/config +++ b/.cargo/config @@ -10,6 +10,7 @@ csv-import = "run --manifest-path common/Cargo.toml --features=bin_csv --bin csv test-server = "run --bin veloren-server-cli --no-default-features" 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 = "run --bin veloren-server-cli"