summaryrefslogtreecommitdiffstats
path: root/Source/cmake.cxx
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2002-12-03 19:09:56 (GMT)
committerKen Martin <ken.martin@kitware.com>2002-12-03 19:09:56 (GMT)
commit37aed9f6c5799c7186610a3e40e4acc13d6ff115 (patch)
tree35e794951cfb08b913af37222c9b0e95b50b23ca /Source/cmake.cxx
parentec1b07015e77222d72512c552c91db55c0a9a05f (diff)
downloadCMake-37aed9f6c5799c7186610a3e40e4acc13d6ff115.zip
CMake-37aed9f6c5799c7186610a3e40e4acc13d6ff115.tar.gz
CMake-37aed9f6c5799c7186610a3e40e4acc13d6ff115.tar.bz2
remove code warrior and fixed GUI isues
Diffstat (limited to 'Source/cmake.cxx')
-rw-r--r--Source/cmake.cxx7
1 files changed, 0 insertions, 7 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx
index b57745f..c33de4f 100644
--- a/Source/cmake.cxx
+++ b/Source/cmake.cxx
@@ -30,7 +30,6 @@
#include "cmGlobalNMakeMakefileGenerator.h"
#include "cmWin32ProcessExecution.h"
#else
-#include "cmGlobalCodeWarriorGenerator.h"
#include "cmGlobalUnixMakefileGenerator.h"
#endif
@@ -622,7 +621,6 @@ void cmake::GetRegisteredGenerators(std::vector<std::string>& names)
names.push_back(cmGlobalBorlandMakefileGenerator::GetActualName());
names.push_back(cmGlobalNMakeMakefileGenerator::GetActualName());
#else
- names.push_back(cmGlobalCodeWarriorGenerator::GetActualName());
names.push_back(cmGlobalUnixMakefileGenerator::GetActualName());
#endif
}
@@ -652,11 +650,6 @@ cmGlobalGenerator* cmake::CreateGlobalGenerator(const char* name)
ret->SetCMakeInstance(this);
}
#else
- if (!strcmp(name,cmGlobalCodeWarriorGenerator::GetActualName()))
- {
- ret = new cmGlobalCodeWarriorGenerator;
- ret->SetCMakeInstance(this);
- }
if (!strcmp(name,cmGlobalUnixMakefileGenerator::GetActualName()))
{
ret = new cmGlobalUnixMakefileGenerator;