added mysql to the build script, and now i have 18 minutes to make sure both servers will work with this change

--HG--
extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%40876
This commit is contained in:
David Anderson 2007-06-01 04:40:58 +00:00
parent eb54cbb4f5
commit 344840bb20

View File

@ -81,7 +81,7 @@ namespace builder
*/ */
public override Library [] GetLibraries() public override Library [] GetLibraries()
{ {
Library [] libs = new Library[5]; Library [] libs = new Library[6];
for (int i=0; i<libs.Length; i++) for (int i=0; i<libs.Length; i++)
{ {
@ -113,6 +113,11 @@ namespace builder
libs[4].Name = "threader.ext"; libs[4].Name = "threader.ext";
libs[4].ProjectFile = "threader"; libs[4].ProjectFile = "threader";
libs[5].Destination = "extensions";
libs[5].LocalPath = "extensions/mysql";
libs[5].Name = "dbi.mysql.ext";
libs[5].ProjectFile = "sm_mysql";
return libs; return libs;
} }