feat add SQLite, compile OK

This commit is contained in:
Liu_Weichao
2023-10-25 16:07:23 +08:00
parent 0705bdaf1a
commit dfa6b664ac
30 changed files with 219137 additions and 3 deletions

View File

@@ -0,0 +1,12 @@
from building import *
cwd = GetCurrentDir()
src = ['sqlite3.c']
src += ['dbhelper.c']
if GetDepend('PKG_SQLITE_DAO_EXAMPLE'):
src += Glob('student_dao.c')
CPPPATH = [cwd]
group = DefineGroup('sqlite', src, depend = ['RT_USING_DFS', 'PKG_USING_SQLITE'], CPPPATH = CPPPATH)
Return('group')