Skip to content
Snippets Groups Projects
Commit 2913cb58 authored by Christoph Grüninger's avatar Christoph Grüninger
Browse files

[CMake] Default to use the build-dir.

The only case we do not want to use the build-dir is
when explicitly autotools are used.
parent 645bbf79
No related branches found
No related tags found
No related merge requests found
......@@ -196,7 +196,7 @@ load_opts() {
echo "----- using default flags \$${COMMAND}_FLAGS from environment -----"
fi
if test "x$USE_CMAKE" = "xyes"; then
if test "x$USE_CMAKE" != "xno"; then
if test -z "$BUILDDIR"; then
echo "No build directory provided. Defaulting to the sub directory build-cmake"
export BUILDDIR=build-cmake
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment