You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
308 B
14 lines
308 B
4 years ago
|
#!/bin/bash
|
||
|
# Shell wrapper for supporting out-of-source builds with CMake < 3.13
|
||
|
|
||
|
# Collect arguments
|
||
|
__cmake="$1"
|
||
|
__cmake_srcdir="$2"
|
||
|
__cmake_builddir="$3"
|
||
|
__cmake_flags="${@:4}"
|
||
|
|
||
|
# Do the build
|
||
|
mkdir -p "${__cmake_builddir}"
|
||
|
"${__cmake}" ${__cmake_flags} "${__cmake_srcdir}" "${__cmake_builddir}"
|
||
|
exit $?
|