move SQLiteLib/SConscript file to SQLite-3.8.1/SConscript

This commit is contained in:
geniusgogo
2013-11-30 15:00:24 +08:00
parent 06d3cf710e
commit 9326719a12
2 changed files with 4 additions and 4 deletions
+14
View File
@@ -0,0 +1,14 @@
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')