forked from xuos/xiuos
APP_Framework/Framework/:add Kconfig file and SConscript file about NNoM(v0.4.3)
This commit is contained in:
18
APP_Framework/Framework/knowing/nnom/SConscript
Normal file
18
APP_Framework/Framework/knowing/nnom/SConscript
Normal 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')
|
||||
Reference in New Issue
Block a user