rt-thread/components/sqlite3/SConscript

14 lines
282 B
Python

Import('RTT_ROOT')
from building import *
cwd = GetCurrentDir()
src = ['sqlite3.c']
src += ['dbhelper.c']
# The set of source files associated with this SConscript file.
path = [cwd]
group = DefineGroup('sqlite', src, depend = ['RT_USING_SDIO'], CPPPATH = path)
Return('group')