Merge pull request #1301 from mariusgreuel/pr-build_sh-cmake-fix

build.sh: For compatibility with old CMake versions, use old syntax to generate build system
This commit is contained in:
Stefan Rueger
2023-03-04 17:19:02 +00:00
committed by GitHub

View File

@@ -74,9 +74,11 @@ case "${ostype}" in
;;
esac
cmake ${build_flags} ${extra_enable} -D CMAKE_BUILD_TYPE=${build_type} -B build_${ostype} ||\
mkdir -p build_${ostype}
cd build_${ostype}
cmake ${build_flags} ${extra_enable} -D CMAKE_BUILD_TYPE=${build_type} .. ||\
{ echo "CMake failed."; exit 1; }
cmake --build build_${ostype} ||\
cmake --build . ||\
{ echo "Build failed."; exit 1; }
cat <<EOF