mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-16 12:41:20 +08:00
15 lines
295 B
Python
15 lines
295 B
Python
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')
|