Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
build_cppcheck.sh 191 B
#!/bin/sh
#build last cppcheck 1.84 (for Travis)

cd ..
git clone https://github.com/danmar/cppcheck.git
cd cppcheck
git checkout Cppcheck
cmake .
make -j$(nproc) all
sudo make install
cd ..