added sqlite to the build script

--HG--
extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%401213
This commit is contained in:
David Anderson 2007-07-29 01:31:36 +00:00
parent efad023796
commit 10b6fbd7f3

View File

@ -83,7 +83,7 @@ namespace builder
*/
public override Library [] GetLibraries()
{
Library [] libs = new Library[7];
Library [] libs = new Library[8];
for (int i=0; i<libs.Length; i++)
{
@ -125,6 +125,11 @@ namespace builder
libs[6].Name = "sdktools.ext";
libs[6].ProjectFile = "sdktools";
libs[7].Destination = "addons/sourcemod/extensions";
libs[7].LocalPath = "extensions/sqlite";
libs[7].Name = "dbi.sqlite.ext";
libs[7].ProjectFile = "sqlite";
return libs;
}