mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-12 13:00:32 +00:00
6d85b9e990
* The python we were using on trusty was EOL and so breaking in sphinx. Rather than continuing on trusty, we upgrade to bionic and deliberately target gcc-5 and clang-3.8 (the only thing we care about being old/minspec to ensure we don't break it).
18 lines
347 B
Bash
Executable File
18 lines
347 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -ev
|
|
|
|
export QT_SELECT=qt5
|
|
|
|
mkdir build
|
|
pushd build
|
|
|
|
# Do a minimal build with as little as possible to get the python modules
|
|
CC=gcc-6 CXX=g++-6 cmake -DCMAKE_BUILD_TYPE=Debug -DENABLE_GL=OFF -DENABLE_GLES=OFF -DENABLE_VULKAN=OFF -DENABLE_RENDERDOCCMD=OFF -DENABLE_QRENDERDOC=OFF ..
|
|
make -j2
|
|
|
|
popd
|
|
|
|
cd docs/
|
|
make html SPHINXOPTS=-W
|