mirror of
https://github.com/ttroy50/cmake-examples.git
synced 2025-12-18 20:24:35 +03:00
6 lines
130 B
Bash
Executable File
6 lines
130 B
Bash
Executable File
#!/bin/bash
|
|
mkdir -p build \
|
|
&& cd build \
|
|
&& scan-build-3.6 -o scanbuildout cmake .. \
|
|
&& scan-build-3.6 -o scanbuildout make
|