mirror of
https://gitee.com/zlgopen/awtk.git
synced 2024-11-29 18:48:09 +08:00
9 lines
255 B
Python
9 lines
255 B
Python
import os
|
|
import sys
|
|
sys.path.append("../common")
|
|
import awtk_files as awtk;
|
|
|
|
CPPFLAGS = '-DHAS_STD_MALLOC -DNDEBUG --enable=warning --enable=performance -DWITH_CPPCHECK --check-level=exhaustive '
|
|
|
|
awtk.run('cppcheck', CPPFLAGS, awtk.getCppCheckFiles())
|