rt-thread-official/components/external/sqlite/SConscript

12 lines
226 B
Python
Raw Normal View History

Import('rtconfig')
import os
from building import *
cwd = GetCurrentDir()
src = Glob('*.c')
CPPPATH = [cwd, str(Dir('#'))]
group = DefineGroup('sqlite', src, depend = ['RT_USING_SQLITE'], CPPPATH = CPPPATH)
Return('group')