X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=kernel%2Fsrc%2FbbtkComplexBlackBox.cxx;h=0c65247ce5c68f1034b5d4cda68028dbf4796292;hb=f45b7f05b03f411759981fe13645466a1c289e6a;hp=c5465ca142c722cd3b29eb96c87a29e16e069368;hpb=8c690fedb5ea897b6a69584e1e237cb5dbad97a5;p=bbtk.git diff --git a/kernel/src/bbtkComplexBlackBox.cxx b/kernel/src/bbtkComplexBlackBox.cxx index c5465ca..0c65247 100644 --- a/kernel/src/bbtkComplexBlackBox.cxx +++ b/kernel/src/bbtkComplexBlackBox.cxx @@ -2,8 +2,8 @@ Program: bbtk Module: $RCSfile: bbtkComplexBlackBox.cxx,v $ Language: C++ - Date: $Date: 2009/05/28 08:12:05 $ - Version: $Revision: 1.27 $ + Date: $Date: 2009/10/05 22:44:48 $ + Version: $Revision: 1.29 $ =========================================================================*/ /* --------------------------------------------------------------------- @@ -691,11 +691,26 @@ namespace bbtk std::string filename_dot2 ("\"" + filename_dot + "\""); - std::string command1 ("dot -Tpng:quartz -o " +#ifdef WIN32 + + std::string currentexecpath( crea::System::GetDllAppPath("bbtk") +"\\dot_embedded\\"); + std::string command1 (currentexecpath + "dot -Tpng -o " + filename_png2 + " " + filename_dot2 ); - std::string command1a("dot -T cmap -o " + + std::string command1a(currentexecpath + "dot -T cmap -o " + + filename_cmap2 + " " + filename_dot2 ); + +#else + std::string command1 ("dot -Tpng:quartz -o " + + filename_png2 + " " + filename_dot2 ); + std::string command1a("dot -T cmap -o " + filename_cmap2 + " " + filename_dot2 ); +#endif + + + + // 1. Generating .dot file FILE *ff; ff = fopen(filename_dot.c_str(),"w");