diff options
author | Brad King <brad.king@kitware.com> | 2010-01-13 17:58:08 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2010-01-13 17:58:08 (GMT) |
commit | 5b5372059c655b8501ea842940627cf8516ca31d (patch) | |
tree | 5f66e8a916d8e2d2f44f57704649d5f18a217e83 /Source/cmake.cxx | |
parent | fdbe16c1f4cc22422ae3d923834d4d956263e580 (diff) | |
download | CMake-5b5372059c655b8501ea842940627cf8516ca31d.zip CMake-5b5372059c655b8501ea842940627cf8516ca31d.tar.gz CMake-5b5372059c655b8501ea842940627cf8516ca31d.tar.bz2 |
Enable extra CodeBlocks generator on Cygwin
This generator builds correctly on Cygwin so it should be enabled.
Change based on patch from issue #10122.
Diffstat (limited to 'Source/cmake.cxx')
-rw-r--r-- | Source/cmake.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx index 4ec72f0..f766d47 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -82,7 +82,7 @@ #include "cmCallVisualStudioMacro.h" #endif -#if !defined(__CYGWIN__) && !defined(CMAKE_BOOT_MINGW) +#if !defined(CMAKE_BOOT_MINGW) # include "cmExtraCodeBlocksGenerator.h" #endif @@ -1653,10 +1653,8 @@ void cmake::AddDefaultExtraGenerators() // e.g. kdevelop4 ? #endif -#if !defined(__CYGWIN__) this->AddExtraGenerator(cmExtraCodeBlocksGenerator::GetActualName(), &cmExtraCodeBlocksGenerator::New); -#endif #ifdef CMAKE_USE_ECLIPSE this->AddExtraGenerator(cmExtraEclipseCDT4Generator::GetActualName(), |