mirror of
https://github.com/falk-werner/webfuse
synced 2024-10-27 20:34:10 +00:00
b19a54d2f9
git-subtree-dir: build/dobuild git-subtree-split: b017db7c22e7c0ca6cee3f0f5ac1dd50f3b68eb9
13 lines
328 B
Bash
Executable File
13 lines
328 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. DoBuildFiles/generic.properties
|
|
. DoBuildFiles/cmake.properties
|
|
. cmake_helper.sh
|
|
|
|
export CTEST_OUTPUT_ON_FAILURE=1
|
|
|
|
{ [ -z "$BUILDVERBOSE" ] && [ -z "$TESTVERBOSE" ]; } || set -- "$(cmake_generator_verbose_opt "$CMAKE_GENERATOR_NAME")" "$@"
|
|
[ -z "$VERBOSE" ] || set -x
|
|
|
|
exec "$CMAKE_GENERATOR_CMD" -j"$NPROC" "$@"
|