mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-13 18:08:54 +00:00
13 lines
296 B
Python
13 lines
296 B
Python
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')
|