APP_Framework/Framework/:add Kconfig file and SConscript file about NNoM(v0.4.3)

This commit is contained in:
WentaoWong
2022-02-18 14:40:20 +08:00
parent 48dfa06f79
commit e4393985f8
3 changed files with 65 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
import os
from building import *
cwd = GetCurrentDir()
src = []
CPPDEFINES = []
CPPPATH = []
src += Glob('src/core/*.c')
src += Glob('src/layers/*.c')
src += Glob('src/backends/*.c')
CPPPATH+=['%s/inc'%(cwd), '%s/port'%(cwd)]
group = DefineGroup('nnom', src, depend = ['USING_NNOM'], CPPPATH = CPPPATH, LOCAL_CPPDEFINES=CPPDEFINES)
Return('group')