]> Creatis software - crea.git/blobdiff - lib/creaDevManagerLib/modelCDMProject.cpp
Feature #1711 CreaDevManager application implementation
[crea.git] / lib / creaDevManagerLib / modelCDMProject.cpp
index dff1b63728b2fe054d5514cd4d4e9d430b717a06..7edde9ad3738891b6aba77479c0084c5c7068be6 100644 (file)
@@ -1138,7 +1138,7 @@ std::map<std::string, bool> 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<std::string, bool> 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;
             }