repertory/scripts/make_debug.sh
Scott E. Graves 3ff46723b8
Some checks failed
BlockStorage/repertory_osx/pipeline/head There was a failure building this commit
BlockStorage/repertory_windows/pipeline/head This commit looks good
BlockStorage/repertory_linux_builds/pipeline/head This commit looks good
initial commit
2022-03-05 00:30:50 -06:00

15 lines
394 B
Bash
Executable File

#!/bin/bash
mkdir -p ../build/debug;cd ../build/debug && cmake ../.. -DREPERTORY_ENABLE_SKYNET=ON \
-DREPERTORY_ENABLE_S3=ON \
-DREPERTORY_ENABLE_SKYNET_PREMIUM_TESTS=ON \
-DREPERTORY_ENABLE_S3_TESTING=ON \
-DCMAKE_BUILD_TYPE=Debug \
-DREPERTORY_WRITE_SUPPORT=ON && make -j10 || exit 1
cd ..
ln -sf debug/repertory .
ln -sf debug/unittests .
ln -sf debug/compile_commands.json .