mirror of
https://github.com/arcan1s/awesome-widgets.git
synced 2025-04-25 07:57:19 +00:00
* add cppcheck script proto (TODO include directories according ot cmake output) TODO do it while build time and/or commit
10 lines
203 B
Bash
Executable File
10 lines
203 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# This code is used to check source files with cppcheck
|
|
|
|
cppcheck --enable=all \
|
|
--std=c++11 \
|
|
--verbose \
|
|
--quiet \
|
|
../sources 2>&1 | grep -v '3rdparty'
|