rt-thread/components/tpcc-sqlite/SConscript

13 lines
258 B
Python

Import('RTT_ROOT')
from building import *
cwd = GetCurrentDir()
src = Glob("*.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')