You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#4427 related. I use the Linux subsystem on Windows 10 and commonly build a Windows and Linux build from the same project folder - currently both binaries end up in target/debug. It'd be nice to have the option to set up target-based outputs, so I could get Windows binaries in target/windows/debug and Linux in target/linux/debug.
My preference for this would be providing some interpolated variables so I could put something like this in my Cargo.toml:
output-dir = "target/${target.os}/${profile}"
The text was updated successfully, but these errors were encountered:
#4427 related. I use the Linux subsystem on Windows 10 and commonly build a Windows and Linux build from the same project folder - currently both binaries end up in
target/debug
. It'd be nice to have the option to set up target-based outputs, so I could get Windows binaries intarget/windows/debug
and Linux intarget/linux/debug
.My preference for this would be providing some interpolated variables so I could put something like this in my
Cargo.toml
:The text was updated successfully, but these errors were encountered: