[Cmake-commits] [cmake-commits] king committed CMakeLists.txt 1.11 1.12

cmake-commits at cmake.org cmake-commits at cmake.org
Tue Dec 8 09:38:39 EST 2009


Update of /cvsroot/CMake/CMake/Tests/CommandLineTest
In directory public:/mounts/ram/cvs-serv23952/Tests/CommandLineTest

Modified Files:
	CMakeLists.txt 
Log Message:
Remove unused DumpDocumentation code

The DumpDocumentation executable and some supporting code and tests were
completely unused by CMake.  Generation of documentation is done by the
individual executables with --help* options.  In this commit we simply
remove the unused code, executable, and test.


Index: CMakeLists.txt
===================================================================
RCS file: /cvsroot/CMake/CMake/Tests/CommandLineTest/CMakeLists.txt,v
retrieving revision 1.11
retrieving revision 1.12
diff -C 2 -d -r1.11 -r1.12
*** CMakeLists.txt	25 Mar 2008 15:26:50 -0000	1.11
--- CMakeLists.txt	8 Dec 2009 14:38:36 -0000	1.12
***************
*** 3,7 ****
  
  GET_FILENAME_COMPONENT(CMAKE_BIN_DIR ${CMAKE_COMMAND} PATH)
- FIND_PROGRAM(DUMP_DOC_EXE NAMES DumpDocumentation PATHS ${CMAKE_BIN_DIR})
  MACRO(EXEC_CMAKE_COMMAND CMAKE_ARGS)
    EXEC_PROGRAM("${CMAKE_COMMAND}" ARGS "${CMAKE_ARGS}" RETURN_VALUE RET)
--- 3,6 ----
***************
*** 26,38 ****
  EXEC_CMAKE_COMMAND("--version \"${CMAKE_CURRENT_BINARY_DIR}/version.txt\"")
  
- IF(DUMP_DOC_EXE)
-   EXEC_PROGRAM(${DUMP_DOC_EXE} ARGS "--all-for-coverage \"${CMAKE_CURRENT_BINARY_DIR}/all_for_coverage.txt\"" RETURN_VALUE RET)
-   IF(${RET})
-     MESSAGE(SEND_ERROR "DumpDoc command failed ")
-   ENDIF(${RET})
- ELSE(DUMP_DOC_EXE)
-   MESSAGE(SEND_ERROR "Cannot find DumpDocumentation executable.")
- ENDIF(DUMP_DOC_EXE)
- 
  ADD_EXECUTABLE(CommandLineTest CommandLineTest.cxx)
  
--- 25,28 ----



More information about the Cmake-commits mailing list