feat(instrusion detect): add knowing app instrusion detect

This commit is contained in:
Liu Yongkai
2021-08-04 15:35:47 +08:00
parent 3b74443dac
commit 2d8147a92b
7 changed files with 3801 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
from building import *
cwd = GetCurrentDir()
src = Glob('*.c') + Glob('*.cpp')
CPPPATH = [cwd]
group = DefineGroup('Applications', src, depend = ['INSTRUSION_DETECT'], LOCAL_CPPPATH = CPPPATH)
Return('group')