correspondence["GDCM"] = "${GDCM_LIBRARIES}";
correspondence["Boost"] = "${BOOST_LIBRARIES}";
+ std::map<std::string, std::string> regexCorrespondence;
+
+ regexCorrespondence["Crea"] = "\\$\\{crea_LIBRARIES\\}";
+ regexCorrespondence["WxWidgets"] = "\\$\\{WXWIDGETS_LIBRARIES\\}";
+ regexCorrespondence["KWWidgets"] = "\\$\\{KWWidgets_LIBRARIES\\}";
+ regexCorrespondence["VTK"] = "\\$\\{VTK_LIBRARIES\\}";
+ regexCorrespondence["ITK"] = "\\$\\{ITK_LIBRARIES\\}";
+ regexCorrespondence["GDCM"] = "\\$\\{GDCM_LIBRARIES\\}";
+ regexCorrespondence["Boost"] = "\\$\\{BOOST_LIBRARIES\\}";
+
+ if (correspondence.find(library_name) != correspondence.end())
+ {
+ std::string library_command = correspondence[library_name];
+ std::string regex_command = regexCorrespondence[library_name];
+ if (this->HasCMakeLists())
+ {
+ std::string CMfile = CDMUtilities::readFile(this->CMakeLists->GetPath().c_str());
+ std::string resCMfile = "";
+
+ boost::regex expression("^\\h*SET([\\s]|#[^\\n]*\\n)*\\(([\\s]|#[^\\n]*\\n)*\\$\\{EXE_NAME\\}_LINK_LIBRARIES(([\\s]|#[^\\n]*\\n)+([\\$\\{\\}\\w\\d]+|\"(?:[^\"\\\\]|\\\\.)*\"))*([\\s]|#[^\\n]*\\n)*\\)");
+ std::string::const_iterator start, end;
+ start = CMfile.begin();
+ end = CMfile.end();
+ boost::match_results<std::string::const_iterator> what;
+ boost::match_flag_type flags = boost::match_default;
+ if(boost::regex_search(start, end, what, expression, flags))
+ {
+ resCMfile += what.prefix().str();
+ bool found = false;
+ if (toInclude) {
+ expression = "^\\h*#+\\h*" + regex_command;
+ std::string::const_iterator start1, end1;
+ start1 = what[0].first;
+ end1 = what[0].second;
+ boost::match_results<std::string::const_iterator> what1, what2;
+ while(boost::regex_search(start1, end1, what1, expression, flags))
+ {
+ found = true;
+ resCMfile += what1.prefix().str();
+ std::string dete = what1[0].str();
+ for (int i = 0; i < dete.size(); ++i) {
+ if (dete[i] != '#')
+ resCMfile.push_back(dete[i]);
+ }
+ what2 = what1;
+ start1 = what1[0].second;
+ }
+ if (found)
+ resCMfile += what2.suffix().str();
+ else
+ {
+ expression = "^\\h*" + regex_command;
+ if(boost::regex_search(start1, end1, what1, expression, flags))
+ found = true;
+
+ expression = "^\\h*SET([\\s]|#[^\\n]*\\n)*\\(([\\s]|#[^\\n]*\\n)*\\$\\{EXE_NAME\\}_LINK_LIBRARIES";
+ boost::regex_search(start1, end1, what1, expression, flags);
+
+ resCMfile += what1.prefix().str() + what1.str();
+ if(!found)
+ resCMfile += "\n" + library_command + "\n";
+ resCMfile += what1.suffix().str();
+ }
+
+ }else{
+ expression = "^\\h*" + regex_command;
+ std::string::const_iterator start1, end1;
+ start1 = what[0].first;
+ end1 = what[0].second;
+ boost::match_results<std::string::const_iterator> what1, what2;
+ while(boost::regex_search(start1, end1, what1, expression, flags))
+ {
+ found = true;
+ resCMfile += what1.prefix().str();
+ resCMfile += "#" + what1.str();
+ what2 = what1;
+ start1 = what1[0].second;
+ }
+ if (found)
+ resCMfile += what2.suffix().str();
+ else
+ {
+ expression = "^\\h*SET([\\s]|#[^\\n]*\\n)*\\(([\\s]|#[^\\n]*\\n)*\\$\\{EXE_NAME\\}_LINK_LIBRARIES";
+ boost::regex_search(start1, end1, what1, expression, flags);
+
+ resCMfile += what1.prefix().str() + what1.str() + what1.suffix().str();
+ }
+ }
+ resCMfile += what.suffix().str();
+
+ return CDMUtilities::writeFile(this->CMakeLists->GetPath().c_str(), resCMfile);
+ }
+ }
+ }
+ return false;
+
+
+/*
+ std::map<std::string, std::string> correspondence;
+
+ correspondence["Crea"] = "${crea_LIBRARIES}";
+ correspondence["WxWidgets"] = "${WXWIDGETS_LIBRARIES}";
+ correspondence["KWWidgets"] = "${KWWidgets_LIBRARIES}";
+ correspondence["VTK"] = "${VTK_LIBRARIES}";
+ correspondence["ITK"] = "${ITK_LIBRARIES}";
+ correspondence["GDCM"] = "${GDCM_LIBRARIES}";
+ correspondence["Boost"] = "${BOOST_LIBRARIES}";
+
if (correspondence.find(library_name) != correspondence.end())
{
std::string library_command = correspondence[library_name];
}
}
return false;
+*/
}
std::map<std::string, bool> modelCDMApplication::GetCustomLibraries()