diff options
author | Brad King <brad.king@kitware.com> | 2011-05-16 15:28:07 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2011-05-16 15:28:07 (GMT) |
commit | dca304ec8d17abd0ec8a0d2ef1bd807c35423df6 (patch) | |
tree | 71ac0b734ca96bf47ade21d4aa55bb637dffc57f /Source/cmTarget.cxx | |
parent | 051cee0096df31d8808549f6200745180f3cc191 (diff) | |
parent | 156ae39905f2d44cefdfa71d0757ae4766dc3b34 (diff) | |
download | CMake-dca304ec8d17abd0ec8a0d2ef1bd807c35423df6.zip CMake-dca304ec8d17abd0ec8a0d2ef1bd807c35423df6.tar.gz CMake-dca304ec8d17abd0ec8a0d2ef1bd807c35423df6.tar.bz2 |
Merge branch 'MakeCodeBlocksGeneratorNonVerbose2' into rule-messages
Conflicts:
Source/cmGlobalUnixMakefileGenerator3.cxx
Source/cmGlobalUnixMakefileGenerator3.h
Diffstat (limited to 'Source/cmTarget.cxx')
-rw-r--r-- | Source/cmTarget.cxx | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx index 5380257..ca61b1f 100644 --- a/Source/cmTarget.cxx +++ b/Source/cmTarget.cxx @@ -532,6 +532,18 @@ void cmTarget::DefineProperties(cmake *cm) "configurations explicitly."); cm->DefineProperty + ("LINK_DEPENDS", cmProperty::TARGET, + "Additional files on which a target binary depends for linking.", + "Specifies a semicolon-separated list of full-paths to files on which " + "the link rule for this target depends. " + "The target binary will be linked if any of the named files is newer " + "than it." + "\n" + "This property is ignored by non-Makefile generators. " + "It is intended to specify dependencies on \"linker scripts\" for " + "custom Makefile link rules."); + + cm->DefineProperty ("LINK_INTERFACE_LIBRARIES", cmProperty::TARGET, "List public interface libraries for a shared library or executable.", "By default linking to a shared library target transitively " |