2013-11-11 22:49:52 +08:00
|
|
|
Import('rtconfig')
|
|
|
|
import os
|
|
|
|
from building import *
|
|
|
|
|
2013-11-24 16:24:22 +08:00
|
|
|
cwd = GetCurrentDir() + str(r'/SQLiteLib/')
|
2013-11-17 00:17:50 +08:00
|
|
|
src = Split("""
|
2013-11-24 16:24:22 +08:00
|
|
|
SQLiteLib/sqlite3.c
|
|
|
|
SQLiteLib/test/test10.c
|
2013-11-17 00:17:50 +08:00
|
|
|
""")
|
2013-11-11 22:49:52 +08:00
|
|
|
CPPPATH = [cwd, str(Dir('#'))]
|
|
|
|
|
|
|
|
group = DefineGroup('sqlite', src, depend = ['RT_USING_SQLITE'], CPPPATH = CPPPATH)
|
|
|
|
|
|
|
|
Return('group')
|