[Cmake-commits] [cmake-commits] king committed cmDocumentVariables.cxx 1.25 1.26

cmake-commits at cmake.org cmake-commits at cmake.org
Fri Feb 20 14:03:43 EST 2009


Update of /cvsroot/CMake/CMake/Source
In directory public:/mounts/ram/cvs-serv31263/Source

Modified Files:
	cmDocumentVariables.cxx 
Log Message:
ENH: Clarify docs of old *_OUTPUT_PATH vars

This clarifies the documentation of EXECUTABLE_OUTPUT_PATH and
LIBRARY_OUTPUT_PATH to sound less like deprecation.


Index: cmDocumentVariables.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmDocumentVariables.cxx,v
retrieving revision 1.25
retrieving revision 1.26
diff -C 2 -d -r1.25 -r1.26
*** cmDocumentVariables.cxx	15 Jan 2009 13:57:44 -0000	1.25
--- cmDocumentVariables.cxx	20 Feb 2009 19:03:41 -0000	1.26
***************
*** 932,950 ****
      ("EXECUTABLE_OUTPUT_PATH", cmProperty::VARIABLE,
       "Old executable location variable.",
!      "This variable should no longer be used as of CMake 2.6.  "
!      "Use the RUNTIME_OUTPUT_DIRECTORY target property instead.  "
!      "It will override this variable if it is set.\n"
!      "If set, this is the directory where all executables "
!      "built during the build process will be placed.",false,
       "Variables that Control the Build");
    cm->DefineProperty
      ("LIBRARY_OUTPUT_PATH", cmProperty::VARIABLE,
       "Old library location variable.",
!      "This variable should no longer be used as of CMake 2.6.  "
!      "Use the ARCHIVE_OUTPUT_DIRECTORY, LIBRARY_OUTPUT_DIRECTORY, and "
!      "RUNTIME_OUTPUT_DIRECTORY target properties instead.  "
!      "They will override this variable if they are set.\n"
!      "If set, this is the directory where all the libraries "
!      "built during the build process will be placed.",false,
       "Variables that Control the Build");
  
--- 932,946 ----
      ("EXECUTABLE_OUTPUT_PATH", cmProperty::VARIABLE,
       "Old executable location variable.",
!      "The target property RUNTIME_OUTPUT_DIRECTORY supercedes "
!      "this variable for a target if it is set.  "
!      "Executable targets are otherwise placed in this directory.",false,
       "Variables that Control the Build");
    cm->DefineProperty
      ("LIBRARY_OUTPUT_PATH", cmProperty::VARIABLE,
       "Old library location variable.",
!      "The target properties ARCHIVE_OUTPUT_DIRECTORY, "
!      "LIBRARY_OUTPUT_DIRECTORY, and RUNTIME_OUTPUT_DIRECTORY supercede "
!      "this variable for a target if they are set.  "
!      "Library targets are otherwise placed in this directory.",false,
       "Variables that Control the Build");
  



More information about the Cmake-commits mailing list