mirror of
https://bitbucket.org/smil3y/katie.git
synced 2025-02-23 18:32:55 +00:00
14 lines
265 B
Bash
14 lines
265 B
Bash
![]() |
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
|
||
|
cwd="$(readlink -f $(dirname $0))"
|
||
|
|
||
|
rm -rf "$cwd/../debug"
|
||
|
mkdir -p "$cwd/../debug"
|
||
|
cd "$cwd/../debug"
|
||
|
|
||
|
scan-build cmake ../ -DCMAKE_BUILD_TYPE=Debug \
|
||
|
-DCMAKE_INSTALL_PREFIX=/usr $@
|
||
|
scan-build make -j $(nproc || sysctl -n hw.ncpu || echo 1)
|