awtk/staticcheck/cppcheck/run.py

9 lines
255 B
Python
Raw Normal View History

2019-04-14 19:14:16 +08:00
import os
import sys
sys.path.append("../common")
import awtk_files as awtk;
2024-08-16 16:29:39 +08:00
CPPFLAGS = '-DHAS_STD_MALLOC -DNDEBUG --enable=warning --enable=performance -DWITH_CPPCHECK --check-level=exhaustive '
2019-04-14 19:14:16 +08:00
awtk.run('cppcheck', CPPFLAGS, awtk.getCppCheckFiles())