mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-06 01:50:38 +00:00
8 lines
110 B
Bash
8 lines
110 B
Bash
#!/bin/sh
|
|
|
|
mkdir build
|
|
cd build
|
|
cmake -DCMAKE_BUILD_TYPE=Debug ..
|
|
echo "Building with $(nproc) jobs"
|
|
make -j2
|