diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2002-03-13 15:25:11 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2002-03-13 15:25:11 (GMT) |
commit | 809b32fe59ee9923eebbcfc373d9eaab158083e9 (patch) | |
tree | cbb36213252d97bf3f7d21b301b4f65aa7a5342c /Source/CMakeLists.txt | |
parent | 83a0759e479ee0718296a1bb8f6fb26e1b13500a (diff) | |
download | CMake-809b32fe59ee9923eebbcfc373d9eaab158083e9.zip CMake-809b32fe59ee9923eebbcfc373d9eaab158083e9.tar.gz CMake-809b32fe59ee9923eebbcfc373d9eaab158083e9.tar.bz2 |
ENH: remove several compiler warnings
Diffstat (limited to 'Source/CMakeLists.txt')
-rw-r--r-- | Source/CMakeLists.txt | 36 |
1 files changed, 31 insertions, 5 deletions
diff --git a/Source/CMakeLists.txt b/Source/CMakeLists.txt index ffdf58e..9f2d6c7 100644 --- a/Source/CMakeLists.txt +++ b/Source/CMakeLists.txt @@ -25,6 +25,22 @@ cmCacheManager.cxx cmCableClassSet.cxx cmSourceGroup.cxx cmListFileCache.cxx +cmake.h +cmakewizard.h +cmMakeDepend.h +cmMakefile.h +cmMakefileGenerator.h +cmRegularExpression.h +cmSourceFile.h +cmSystemTools.h +cmDirectory.h +cmCommands.h +cmTarget.h +cmCustomCommand.h +cmCacheManager.h +cmCableClassSet.h +cmSourceGroup.h +cmListFileCache.h ) # configure the .h file @@ -37,10 +53,20 @@ INCLUDE_DIRECTORIES(${CMake_BINARY_DIR}/Source) ADD_DEFINITIONS(-DCMAKE_BUILD_WITH_CMAKE) IF (WIN32) - SOURCE_FILES(SRCS cmDSWWriter.cxx cmDSPWriter.cxx cmMSProjectGenerator.cxx) - SOURCE_FILES(SRCS cmBorlandMakefileGenerator.cxx) - SOURCE_FILES(SRCS cmNMakeMakefileGenerator.cxx) - SOURCE_FILES(SRCS cmMSDotNETGenerator.cxx) + SOURCE_FILES(SRCS + cmDSWWriter.cxx + cmDSPWriter.cxx + cmMSProjectGenerator.cxx + cmBorlandMakefileGenerator.cxx + cmNMakeMakefileGenerator.cxx + cmMSDotNETGenerator.cxx + cmDSWWriter.cxx + cmDSPWriter.h + cmMSProjectGenerator.h + cmBorlandMakefileGenerator.h + cmNMakeMakefileGenerator.h + cmMSDotNETGenerator.h + ) IF(NOT UNIX) IF( NOT BORLAND ) LINK_LIBRARIES( rpcrt4.lib ) @@ -57,7 +83,7 @@ IF (UNIX) ENDIF (CURSES_LIBRARY) ENDIF (UNIX) -SOURCE_FILES(SRCS cmUnixMakefileGenerator.cxx) +SOURCE_FILES(SRCS cmUnixMakefileGenerator.cxx cmUnixMakefileGenerator.h) # create a library used by the command line and the GUI |