Files
luban-lite-t3e-pro/packages/third-party/fdtlib/SConscript
刘可亮 aaa66c7b20 V1.0.1
2023-11-09 20:19:51 +08:00

17 lines
376 B
Python

from building import *
import rtconfig
# get current directory
cwd = GetCurrentDir()
# The set of source files associated with this SConscript file.
src = Glob('*.c')
path = [cwd + '/']
path += [cwd + '/src']
LOCAL_CCFLAGS = ''
group = DefineGroup('fdtlib', src, depend = ['LPKG_USING_FDTLIB'], CPPPATH = path, LOCAL_CCFLAGS = LOCAL_CCFLAGS)
Return('group')