mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-20 21:03:48 +08:00
15 lines
253 B
Python
15 lines
253 B
Python
Import('rtconfig')
|
|
import os
|
|
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
src = Split("""
|
|
sqlite3.c
|
|
test/test10.c
|
|
""")
|
|
CPPPATH = [cwd, str(Dir('#'))]
|
|
|
|
group = DefineGroup('sqlite', src, depend = ['RT_USING_SQLITE'], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|