[Cmake-commits] [cmake-commits] king committed cmTarget.cxx 1.235 1.236

cmake-commits at cmake.org cmake-commits at cmake.org
Thu Mar 19 10:53:58 EDT 2009


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

Modified Files:
	cmTarget.cxx 
Log Message:
ENH: Mention CMAKE_* variables in RPATH properties

The RPATH target properties are initialized by CMAKE_<prop> variables at
target creation time.  This notes the feature in the property
documentation.  It is already noted in the variable documentation.


Index: cmTarget.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmTarget.cxx,v
retrieving revision 1.235
retrieving revision 1.236
diff -C 2 -d -r1.235 -r1.236
*** cmTarget.cxx	10 Feb 2009 13:51:13 -0000	1.235
--- cmTarget.cxx	19 Mar 2009 14:53:51 -0000	1.236
***************
*** 74,78 ****
       "the target in the build tree with the INSTALL_RPATH.  This takes "
       "precedence over SKIP_BUILD_RPATH and avoids the need for relinking "
!      "before installation.");
  
    cm->DefineProperty
--- 74,80 ----
       "the target in the build tree with the INSTALL_RPATH.  This takes "
       "precedence over SKIP_BUILD_RPATH and avoids the need for relinking "
!      "before installation.  "
!      "This property is initialized by the value of the variable "
!      "CMAKE_BUILD_WITH_INSTALL_RPATH if it is set when a target is created.");
  
    cm->DefineProperty
***************
*** 342,346 ****
       "The rpath to use for installed targets.",
       "A semicolon-separated list specifying the rpath "
!      "to use in installed targets (for platforms that support it).");
  
    cm->DefineProperty
--- 344,350 ----
       "The rpath to use for installed targets.",
       "A semicolon-separated list specifying the rpath "
!      "to use in installed targets (for platforms that support it).  "
!      "This property is initialized by the value of the variable "
!      "CMAKE_INSTALL_RPATH if it is set when a target is created.");
  
    cm->DefineProperty
***************
*** 349,353 ****
       "INSTALL_RPATH_USE_LINK_PATH is a boolean that if set to true will "
       "append directories in the linker search path and outside the "
!      "project to the INSTALL_RPATH. ");
  
    cm->DefineProperty
--- 353,360 ----
       "INSTALL_RPATH_USE_LINK_PATH is a boolean that if set to true will "
       "append directories in the linker search path and outside the "
!      "project to the INSTALL_RPATH.  "
!      "This property is initialized by the value of the variable "
!      "CMAKE_INSTALL_RPATH_USE_LINK_PATH if it is set when a target is "
!      "created.");
  
    cm->DefineProperty
***************
*** 547,551 ****
       "SKIP_BUILD_RPATH is a boolean specifying whether to skip automatic "
       "generation of an rpath allowing the target to run from the "
!      "build tree. ");
  
    cm->DefineProperty
--- 554,560 ----
       "SKIP_BUILD_RPATH is a boolean specifying whether to skip automatic "
       "generation of an rpath allowing the target to run from the "
!      "build tree.  "
!      "This property is initialized by the value of the variable "
!      "CMAKE_SKIP_BUILD_RPATH if it is set when a target is created.");
  
    cm->DefineProperty



More information about the Cmake-commits mailing list