mirror of
https://github.com/falk-werner/webfuse-provider
synced 2026-03-02 04:09:18 +00:00
Squashed 'build/dobuild/' content from commit b017db7
git-subtree-dir: build/dobuild git-subtree-split: b017db7c22e7c0ca6cee3f0f5ac1dd50f3b68eb9
This commit is contained in:
19
assets/adapters/cmake/prepare
Executable file
19
assets/adapters/cmake/prepare
Executable file
@@ -0,0 +1,19 @@
|
||||
#!/bin/sh
|
||||
|
||||
. DoBuildFiles/generic.properties
|
||||
. DoBuildFiles/cmake.properties
|
||||
|
||||
camelcase() {
|
||||
echo "$@" | sed -r 's/(^|_)([a-z])/\U\2/g'
|
||||
}
|
||||
|
||||
if [ -f "${CMAKE_TOOLCHAIN_FILE}" ]; then
|
||||
set -- "$@" "-DCMAKE_TOOLCHAIN_FILE=${CMAKE_TOOLCHAIN_FILE}"
|
||||
fi
|
||||
if [ -n "$BUILD_TESTING" ]; then
|
||||
set -- "$@" "-DBUILD_TESTING=ON"
|
||||
fi
|
||||
set -- "$@" -DCMAKE_EXPORT_COMPILE_COMMANDS=ON "-DCMAKE_BUILD_TYPE=$(camelcase "$VARIANT")" "-G${CMAKE_GENERATOR}" "-B${PWD}" "$PROJECTDIR"
|
||||
[ -z "$VERBOSE" ] || set -x
|
||||
|
||||
exec cmake "$@"
|
||||
Reference in New Issue
Block a user