From: guigues Date: Wed, 28 Jan 2009 13:20:32 +0000 (+0000) Subject: Added RelWithDebInfo to the package paths when plugin in packages X-Git-Tag: v0.9.1~3 X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=commitdiff_plain;ds=sidebyside;h=22be581f80eb1c47223d75b010ad42d3a386efba;p=bbtk.git Added RelWithDebInfo to the package paths when plugin in packages --- diff --git a/kernel/src/bbtkConfigurationFile.cxx b/kernel/src/bbtkConfigurationFile.cxx index 764024a..4fab8d8 100644 --- a/kernel/src/bbtkConfigurationFile.cxx +++ b/kernel/src/bbtkConfigurationFile.cxx @@ -2,8 +2,8 @@ Program: bbtk Module: $RCSfile: bbtkConfigurationFile.cxx,v $ Language: C++ - Date: $Date: 2009/01/28 11:54:04 $ - Version: $Revision: 1.27 $ + Date: $Date: 2009/01/28 13:20:32 $ + Version: $Revision: 1.28 $ =========================================================================*/ /* --------------------------------------------------------------------- @@ -542,6 +542,11 @@ namespace bbtk mPackage_paths.push_back(pack_path); #ifdef _WIN32 + pack_path = path + "/RelWithDebInfo"; + PACKPATH = BB.addChild((XMLCSTR)"package_path"); + PACKPATH.addText((XMLCSTR)pack_path.c_str()); + Utilities::replace(pack_path,INVALID_FILE_SEPARATOR,VALID_FILE_SEPARATOR); + mPackage_paths.push_back(pack_path); pack_path = path + "/Debug"; PACKPATH = BB.addChild((XMLCSTR)"package_path"); PACKPATH.addText((XMLCSTR)pack_path.c_str());