[cmake-developers] [patch] Document -H and -B

Brad King brad.king at kitware.com
Thu Jun 30 17:02:04 EDT 2016


On 06/30/2016 04:57 PM, Shawn Waldon wrote:
>     mkdir -p "$build" && pushd "$build" && cmake "$src" && popd

Or use a ()-enclosed subshell:

 (mkdir -p "$build" && cd "$build" && cmake "$src")

-Brad



More information about the cmake-developers mailing list