diff options
author | Ken Martin <ken.martin@kitware.com> | 2005-03-03 13:47:03 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2005-03-03 13:47:03 (GMT) |
commit | 78ca400d33ee7608dcddbda80143fb5768da38e2 (patch) | |
tree | ad7f68b199bfce13cddb352a3402d8f06774036e | |
parent | 96d0eb27e9e47355d2a75e962cda827b769008f5 (diff) | |
download | CMake-78ca400d33ee7608dcddbda80143fb5768da38e2.zip CMake-78ca400d33ee7608dcddbda80143fb5768da38e2.tar.gz CMake-78ca400d33ee7608dcddbda80143fb5768da38e2.tar.bz2 |
ENH: remove code warrior classes
-rw-r--r-- | Source/CMakeLists.txt | 9 | ||||
-rw-r--r-- | Source/cmake.cxx | 8 |
2 files changed, 0 insertions, 17 deletions
diff --git a/Source/CMakeLists.txt b/Source/CMakeLists.txt index 73c42e2..a2fcbe1 100644 --- a/Source/CMakeLists.txt +++ b/Source/CMakeLists.txt @@ -80,15 +80,6 @@ INCLUDE_DIRECTORIES(${CMake_SOURCE_DIR}/Source) # let cmake know it is supposed to use it ADD_DEFINITIONS(-DCMAKE_BUILD_WITH_CMAKE) -IF (APPLE) - SET(SRCS ${SRCS} - cmGlobalCodeWarriorGenerator.cxx - cmLocalCodeWarriorGenerator.cxx - cmGlobalCodeWarriorGenerator.h - cmLocalCodeWarriorGenerator.h - ) -ENDIF (APPLE) - # Kdevelop only works on UNIX and not windows IF(UNIX) SET(SRCS ${SRCS} diff --git a/Source/cmake.cxx b/Source/cmake.cxx index f909159..d48f85a 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -63,9 +63,6 @@ # include <sys/types.h> # include <sys/time.h> # include <sys/resource.h> -# if defined(CMAKE_BUILD_WITH_CMAKE) -# include "cmGlobalCodeWarriorGenerator.h" -# endif #endif #include <memory> // auto_ptr @@ -1453,11 +1450,6 @@ void cmake::AddDefaultGenerators() &cmGlobalBorlandMakefileGenerator::New; m_Generators[cmGlobalNMakeMakefileGenerator::GetActualName()] = &cmGlobalNMakeMakefileGenerator::New; -#else -# if defined(__APPLE__) && defined(CMAKE_BUILD_WITH_CMAKE) - m_Generators[cmGlobalCodeWarriorGenerator::GetActualName()] = - &cmGlobalCodeWarriorGenerator::New; -# endif #endif m_Generators[cmGlobalUnixMakefileGenerator::GetActualName()] = &cmGlobalUnixMakefileGenerator::New; |