X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2FcreaDevManagerLib%2FmodelCDMProject.cpp;h=7edde9ad3738891b6aba77479c0084c5c7068be6;hb=e9a8dcef4a5ac51afa7b0064db74c58f0aeb4c5b;hp=dff1b63728b2fe054d5514cd4d4e9d430b717a06;hpb=568ae730865efa12b53def3779d38067afd8963a;p=crea.git diff --git a/lib/creaDevManagerLib/modelCDMProject.cpp b/lib/creaDevManagerLib/modelCDMProject.cpp index dff1b63..7edde9a 100644 --- a/lib/creaDevManagerLib/modelCDMProject.cpp +++ b/lib/creaDevManagerLib/modelCDMProject.cpp @@ -1138,7 +1138,7 @@ std::map modelCDMProject::Get3rdPartyLibraries() boost::match_flag_type flags = boost::match_default; while(boost::regex_search(start, end, what, expression, flags)) { - std::cout << what[0].str() << std::endl; + //std::cout << what[0].str() << std::endl; boost::regex expression1 = boost::regex("USE_\\w+"); std::string::const_iterator start1, end1; start1 = what[0].first; @@ -1148,7 +1148,7 @@ std::map modelCDMProject::Get3rdPartyLibraries() { std::string dete = what1.str(); CDMUtilities::normalizeStr(dete); - std::cout << dete << std::endl; + //std::cout << dete << std::endl; if(correspondence.find(dete) != correspondence.end()) res[correspondence[dete]] = true; }