]> Creatis software - bbtk.git/commitdiff
Added RelWithDebInfo to the package paths when plugin in packages
authorguigues <guigues>
Wed, 28 Jan 2009 13:20:32 +0000 (13:20 +0000)
committerguigues <guigues>
Wed, 28 Jan 2009 13:20:32 +0000 (13:20 +0000)
kernel/src/bbtkConfigurationFile.cxx

index 764024a04d4e0552ff3994da7cceba4a74219e58..4fab8d8ec74d841fe00f47ab0a283afb827b69a9 100644 (file)
@@ -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());