Having used CMake, I've become used to out-of-source builds, which are encouraged with CMake. How can out-of-source builds be done with Cargo?
Using in-source-builds again feels like a step backwards:
- Development tools need to be configured to ignore paths. Sometimes multiple plugins and development tools - especially using VIM or Emacs!
- Some tools can't be configured to easily hide build files. While dotfiles are typically hidden, they will still show
Cargo.lock
andtarget/
, worse still, recursively exposing their contents. - Deleting un-tracked files to remove everything outside of version control, typically to cleanup editor temp files or some test output, can backfire if you forgot to add a new file to version control and don't manually check the file list properly before deleting them.
- Dependencies are downloaded into your source code path, sometimes adding
*.rs
files in thetarget
directory as part of building indirect deps, so operating on all*.rs
files may accidentally pickup other files which aren't in a hidden directory, so might not be ignored even after development tools have been configured.
While it's possible to work around all these issues, I'd rather just have an external build path and keep the source directory pristine.
You can specify the directory of the
target/
folder either via configuration file (keybuild.target-dir
) or environment variable (CARGO_TARGET_DIR
). Here is an example using a configuration file:Suppose you want to have a directory
~/work/
in which you want to save the Cargo project (~/work/foo/
) and next to it the target directory (~/work/my-target/
).Then insert the following into the configuration file:
If you then build in your normal Cargo project directory:
You will notice that there is no
target/
dir, but everything is in~/work/my-target/
.However, the
Cargo.lock
is still saved inside the Cargo project directory, but that kinda makes sense. For executables, you should check theCargo.lock
file into your git! For libraries, you shouldn't. I guess having to ignore one file is better than having to ignore an entire folder.Lastly, there are a few caveats to changing the target-dir, which are listed in the PR which introduced the feature.