2013-11-30 14:59:55 +08:00

14 lines
239 B
Python

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