diff options
author | Alexander Neundorf <neundorf@kde.org> | 2007-07-18 14:19:33 (GMT) |
---|---|---|
committer | Alexander Neundorf <neundorf@kde.org> | 2007-07-18 14:19:33 (GMT) |
commit | 27244a1fdef646ea791e28119cefc57c4c967564 (patch) | |
tree | 6ed62309ee34fb3e01646a301acf9939c4414b7b /Source/CMakeLists.txt | |
parent | 0044ce71bce5e9329356d0cb6bc67ea30142b9b2 (diff) | |
download | CMake-27244a1fdef646ea791e28119cefc57c4c967564.zip CMake-27244a1fdef646ea791e28119cefc57c4c967564.tar.gz CMake-27244a1fdef646ea791e28119cefc57c4c967564.tar.bz2 |
ENH: build codeblocks generator also on Windows
Alex
Diffstat (limited to 'Source/CMakeLists.txt')
-rw-r--r-- | Source/CMakeLists.txt | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/Source/CMakeLists.txt b/Source/CMakeLists.txt index 574e69d..915097e 100644 --- a/Source/CMakeLists.txt +++ b/Source/CMakeLists.txt @@ -173,10 +173,13 @@ SET(SRCS # Kdevelop only works on UNIX and not windows IF(UNIX) - SET(SRCS ${SRCS} - cmGlobalKdevelopGenerator.cxx - cmExtraCodeBlocksGenerator.cxx) + 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} |