mirror of
https://gitee.com/zlgopen/awtk.git
synced 2024-12-05 05:27:58 +08:00
9 lines
230 B
Python
9 lines
230 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 '
|
||
|
|
||
|
awtk.run('cppcheck', CPPFLAGS, awtk.getCppCheckFiles())
|