mirror of
https://github.com/uroni/urbackup_backend.git
synced 2025-10-26 11:36:50 +00:00
15 lines
225 B
Bash
Executable File
15 lines
225 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
mkdir build
|
|
cd build
|
|
cmake -DCMAKE_INSTALL_PREFIX=../../install $@ ../
|
|
make
|
|
make test
|
|
make install
|
|
LSAN_OPTIONS=verbosity=1:log_threads=1 ctest --output-on-failure
|
|
|
|
cd ..
|
|
./cppcheck.sh ../install/include
|