rt-thread-official/components/external/SQLite-3.8.1/SQLiteLib/SConscript

15 lines
253 B
Python
Raw Normal View History

Import('rtconfig')
import os
from building import *
cwd = GetCurrentDir()
src = Split("""
sqlite3.c
2013-11-17 13:25:46 +08:00
test/test10.c
""")
CPPPATH = [cwd, str(Dir('#'))]
group = DefineGroup('sqlite', src, depend = ['RT_USING_SQLITE'], CPPPATH = CPPPATH)
Return('group')