rustdesk/.cargo/config.toml

9 lines
323 B
TOML
Raw Normal View History

2022-05-14 11:46:20 +08:00
[target.x86_64-pc-windows-msvc]
rustflags = ["-Ctarget-feature=+crt-static"]
[target.i686-pc-windows-msvc]
2024-08-14 17:32:05 +08:00
rustflags = ["-C", "target-feature=+crt-static", "-C", "link-args=/NODEFAULTLIB:MSVCRT"]
[target.'cfg(target_os="macos")']
rustflags = [
"-C", "link-args=-sectcreate __CGPreLoginApp __cgpreloginapp /dev/null",
2022-05-14 11:46:20 +08:00
]