4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-27 06:07:24 +08:00

15 lines
295 B
Python
Raw Normal View History

Import('rtconfig')
import os
from building import *
cwd = GetCurrentDir() + str(r'/SQLiteLib/')
src = Split("""
SQLiteLib/sqlite3.c
SQLiteLib/test/test10.c
""")
CPPPATH = [cwd, str(Dir('#'))]
group = DefineGroup('sqlite', src, depend = ['RT_USING_SQLITE'], CPPPATH = CPPPATH)
Return('group')