diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-07-08 21:27:04 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-07-17 20:14:36 (GMT) |
commit | f19653eb947c11f452be240d9a9a9daa4cbf635d (patch) | |
tree | 50f3d7fc60ee8fe65c23ee9babff049cd0073945 /Source | |
parent | a5412fbab45c9386f95fba3567e38c7b1cf8308d (diff) | |
download | CMake-f19653eb947c11f452be240d9a9a9daa4cbf635d.zip CMake-f19653eb947c11f452be240d9a9a9daa4cbf635d.tar.gz CMake-f19653eb947c11f452be240d9a9a9daa4cbf635d.tar.bz2 |
CodeLite: Remove unused code.
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmExtraCodeLiteGenerator.cxx | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/Source/cmExtraCodeLiteGenerator.cxx b/Source/cmExtraCodeLiteGenerator.cxx index 9705d2b..c2cff14 100644 --- a/Source/cmExtraCodeLiteGenerator.cxx +++ b/Source/cmExtraCodeLiteGenerator.cxx @@ -141,24 +141,6 @@ void cmExtraCodeLiteGenerator return; } - // figure out the compiler - //std::string compiler = this->GetCBCompilerId(mf); - std::string workspaceSourcePath = mf->GetHomeDirectory(); - std::string workspaceOutputDir = mf->GetHomeOutputDirectory(); - std::vector<std::string> outputFiles = mf->GetOutputFiles(); - std::string projectName = mf->GetProjectName(); - std::string incDirs; - std::vector<cmValueWithOrigin> incDirsVec = - mf->GetIncludeDirectoriesEntries(); - std::vector<cmValueWithOrigin>::const_iterator iterInc = incDirsVec.begin(); - - //std::cout << "GetIncludeDirectories:" << std::endl; - for(; iterInc != incDirsVec.end(); ++iterInc ) - { - //std::cout << (*ItStrVec) << std::endl; - incDirs += iterInc->Value + " "; - } - //////////////////////////////////// fout << "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n" "<CodeLite_Project Name=\"" << mf->GetProjectName() |