Program: bbtk
Module: $RCSfile: bbtkComplexBlackBox.cxx,v $
Language: C++
- Date: $Date: 2009/10/16 08:52:12 $
- Version: $Revision: 1.30 $
+ Date: $Date: 2010/03/06 00:56:41 $
+ Version: $Revision: 1.31 $
=========================================================================*/
/* ---------------------------------------------------------------------
#ifdef WIN32
-
std::string currentexecpath("\"\"" + crea::System::GetDllAppPath("bbtk") +"\\dot_embedded\\dot\"");
-
- std::string command1 (currentexecpath + " -Tpng -o "
- + filename_png2 + " " + filename_dot2 + "\"");
-
- std::string command1a(currentexecpath + " -T cmap -o "
- + filename_cmap2 + " " + filename_dot2 + "\"");
-
+ std::string command1 (currentexecpath + " -Tpng -o " + filename_png2 + " " + filename_dot2 + "\"");
+ std::string command1a(currentexecpath + " -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 );
-
+ #ifdef APPLE
+ std::string command1 ("dot -Tpng:quartz -o " + filename_png2 + " " + filename_dot2 );
+ std::string command1a("dot -T cmap -o " + filename_cmap2 + " " + filename_dot2 );
+ #else
+ std::string command1 ("dot -Tpng:cairo -o " + filename_png2 + " " + filename_dot2 );
+ std::string command1a("dot -T cmap -o " + filename_cmap2 + " " + filename_dot2 );
+ #endif
#endif