
The -S and -B flags were officially introduced in CMake 3.13. Avoids the following warning: " CMake Warning: No source or binary directory provided. Both will be assumed to be the same as the current working directory, but note that this warning will become a fatal error in future CMake releases. " Signed-off-by: Andres Gomez <agomez@igalia.com> Reviewed-by: Christian Gmeiner <christian.gmeiner@gmail.com> Reviewed-by: Tomeu Vizoso <tomeu.vizoso@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6388>
18 lines
538 B
Bash
18 lines
538 B
Bash
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
RENDERDOC_VERSION=da02e88201dc3b64316fc33ce6ff69cc729689aa
|
|
|
|
git clone https://github.com/baldurk/renderdoc.git --single-branch --no-checkout /renderdoc
|
|
pushd /renderdoc
|
|
git checkout "$RENDERDOC_VERSION"
|
|
cmake -S . -B _build -G Ninja -DENABLE_QRENDERDOC=false -DCMAKE_BUILD_TYPE=Release $EXTRA_CMAKE_ARGS
|
|
ninja -C _build
|
|
mkdir -p build/lib
|
|
${STRIP_CMD:-strip} _build/lib/*.so
|
|
cp _build/lib/renderdoc.so build/lib
|
|
cp _build/lib/librenderdoc.so build/lib
|
|
find . -not -path './build' -not -path './build/*' -delete
|
|
popd
|