From 2617bdae50f5aa7f1dd6f10d7c0b416e3b746cfd Mon Sep 17 00:00:00 2001 From: David Anderson Date: Sat, 16 Jun 2007 15:19:09 +0000 Subject: [PATCH] - updated build tool for new gamedata path - removed threader (unused) - added bintools --HG-- extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%40958 --- tools/builder/PkgCore.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tools/builder/PkgCore.cs b/tools/builder/PkgCore.cs index af625cfe..ee5a4d71 100644 --- a/tools/builder/PkgCore.cs +++ b/tools/builder/PkgCore.cs @@ -33,7 +33,7 @@ namespace builder folders[0] = "bin"; folders[1] = "plugins/disabled"; - folders[2] = "configs/gamedata"; + folders[2] = "gamedata"; folders[3] = "configs/geoip"; folders[4] = "translations"; folders[5] = "logs"; @@ -59,7 +59,6 @@ namespace builder public override void OnCopyFolders(ABuilder builder) { builder.CopyFolder(this, "configs", "configs", null); - builder.CopyFolder(this, "configs/gamedata", "configs/gamedata", null); builder.CopyFolder(this, "configs/geoip", "configs/geoip", null); string [] plugin_omits = new string[1]; @@ -68,6 +67,7 @@ namespace builder string [] include_omits = new string[1]; include_omits[0] = "version.tpl"; + builder.CopyFolder(this, "gamedata", "gamedata", null); builder.CopyFolder(this, "plugins", "scripting", plugin_omits); builder.CopyFolder(this, "plugins/include", "scripting/include", include_omits); builder.CopyFolder(this, "translations", "translations", null); @@ -109,9 +109,9 @@ namespace builder libs[3].ProjectFile = "geoip"; libs[4].Destination = "extensions"; - libs[4].LocalPath = "extensions/threader"; - libs[4].Name = "threader.ext"; - libs[4].ProjectFile = "threader"; + libs[4].LocalPath = "extensions/bintools"; + libs[4].Name = "bintools.ext"; + libs[4].ProjectFile = "bintools"; libs[5].Destination = "extensions"; libs[5].LocalPath = "extensions/mysql";