diff options
author | Alex Neundorf <neundorf@kde.org> | 2010-11-09 20:37:51 (GMT) |
---|---|---|
committer | Alex Neundorf <neundorf@kde.org> | 2010-11-09 20:37:51 (GMT) |
commit | 84ce612c65520c273aa3b1d2efd2f8f4de7d3867 (patch) | |
tree | 3b8b53490941a16801a9530e0b258268148a5e38 /Source/CMakeLists.txt | |
parent | a60b09927d4c29756c428d4c38f5ee2810a8f66e (diff) | |
download | CMake-84ce612c65520c273aa3b1d2efd2f8f4de7d3867.zip CMake-84ce612c65520c273aa3b1d2efd2f8f4de7d3867.tar.gz CMake-84ce612c65520c273aa3b1d2efd2f8f4de7d3867.tar.bz2 |
Move the code for generating dot-files into separate class cmGraphVizWriter
Alex
Diffstat (limited to 'Source/CMakeLists.txt')
-rw-r--r-- | Source/CMakeLists.txt | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Source/CMakeLists.txt b/Source/CMakeLists.txt index 71284b2..718e52e 100644 --- a/Source/CMakeLists.txt +++ b/Source/CMakeLists.txt @@ -183,6 +183,8 @@ SET(SRCS cmGlobalUnixMakefileGenerator3.cxx cmGlobalUnixMakefileGenerator3.h cmGraphAdjacencyList.h + cmGraphVizWriter.cxx + cmGraphVizWriter.h cmInstallGenerator.h cmInstallGenerator.cxx cmInstallExportGenerator.cxx @@ -332,7 +334,7 @@ ENDIF (WIN32) # create a library used by the command line and the GUI ADD_LIBRARY(CMakeLib ${SRCS}) -TARGET_LINK_LIBRARIES(CMakeLib cmsys +TARGET_LINK_LIBRARIES(CMakeLib cmsys ${CMAKE_EXPAT_LIBRARIES} ${CMAKE_ZLIB_LIBRARIES} ${CMAKE_TAR_LIBRARIES} ${CMAKE_COMPRESS_LIBRARIES} ${CMAKE_CURL_LIBRARIES} ) @@ -432,7 +434,7 @@ IF(CYGWIN) CPack/cmCPackCygwinSourceGenerator.cxx ) ENDIF(CYGWIN) - + IF(UNIX) SET(CPACK_SRCS ${CPACK_SRCS} CPack/cmCPackDebGenerator.cxx |