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 | |
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')
-rw-r--r-- | Source/CMakeLists.txt | 6 | ||||
-rw-r--r-- | Source/cmake.cxx | 4 |
2 files changed, 3 insertions, 7 deletions
diff --git a/Source/CMakeLists.txt b/Source/CMakeLists.txt index 8e3872b..49cbda7 100644 --- a/Source/CMakeLists.txt +++ b/Source/CMakeLists.txt @@ -167,6 +167,8 @@ SET(SRCS cmExportFileGenerator.cxx cmExportInstallFileGenerator.h cmExportInstallFileGenerator.cxx + cmExtraCodeBlocksGenerator.cxx + cmExtraCodeBlocksGenerator.h cmExtraEclipseCDT4Generator.cxx cmExtraEclipseCDT4Generator.h cmFileTimeComparison.cxx @@ -256,10 +258,6 @@ IF(UNIX) SET(SRCS ${SRCS} cmGlobalKdevelopGenerator.cxx) ENDIF(UNIX) -IF(NOT CYGWIN) - SET(SRCS ${SRCS} cmExtraCodeBlocksGenerator.cxx) -ENDIF(NOT CYGWIN) - # XCode only works on apple IF(APPLE) SET(SRCS ${SRCS} 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(), |