mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
31 lines
1.5 KiB
Plaintext
31 lines
1.5 KiB
Plaintext
[target.x86_64-unknown-linux-gnu]
|
|
rustflags = [
|
|
"-C", "link-arg=-fuse-ld=gold",
|
|
]
|
|
|
|
[target.x86_64-pc-windows-gnu]
|
|
rustflags = [
|
|
# Required for mimalloc
|
|
"-C", "link-arg=-lpsapi",
|
|
]
|
|
|
|
[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"
|
|
# server-cli
|
|
server = "run --bin veloren-server-cli"
|
|
test-server = "run --bin veloren-server-cli --no-default-features --features simd"
|
|
tracy-server = "run --bin veloren-server-cli --features tracy,simd --profile no_overflow"
|
|
tracy-server-debuginfo = "run --bin veloren-server-cli --features tracy,simd --profile no_overflow_debuginfo"
|
|
tracy-server-releasedebuginfo = "run --bin veloren-server-cli --features tracy,simd --profile releasedebuginfo"
|
|
tracy-test-server = "run --bin veloren-server-cli --no-default-features --features tracy,simd --profile no_overflow"
|
|
# 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 --"
|
|
ci-clippy = "clippy --all-targets --locked --features=bin_cmd_doc_gen,bin_compression,bin_csv,bin_graphviz,bin_bot,bin_asset_migrate,asset_tweak"
|