mirror of
https://bitbucket.org/smil3y/katie.git
synced 2025-02-23 10:22:55 +00:00
13 lines
265 B
Bash
Executable file
13 lines
265 B
Bash
Executable file
#!/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)
|