mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-05 17:40:39 +00:00
14 lines
164 B
Bash
14 lines
164 B
Bash
#!/bin/sh
|
|
|
|
# ignore "error" codes in the env script below
|
|
set +e
|
|
|
|
. /opt/qt56/bin/qt56-env.sh
|
|
|
|
set -e
|
|
|
|
mkdir build
|
|
cd build
|
|
cmake -DCMAKE_BUILD_TYPE=Debug ..
|
|
make
|