diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2007-03-13 18:23:08 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2007-03-13 18:23:08 (GMT) |
commit | 5891ba16ce5cec9ed81468da4d07f1513de756ee (patch) | |
tree | fca5f4b9b288835ee5e7eaa439740385b1e0e11a /Source/cmTarget.cxx | |
parent | d720036e6156f58a7a3392908b2bae67e207bdc6 (diff) | |
download | CMake-5891ba16ce5cec9ed81468da4d07f1513de756ee.zip CMake-5891ba16ce5cec9ed81468da4d07f1513de756ee.tar.gz CMake-5891ba16ce5cec9ed81468da4d07f1513de756ee.tar.bz2 |
ENH: add project to target map, not used yet, but created
Diffstat (limited to 'Source/cmTarget.cxx')
-rw-r--r-- | Source/cmTarget.cxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx index 5f110d3..45e71d0 100644 --- a/Source/cmTarget.cxx +++ b/Source/cmTarget.cxx @@ -122,7 +122,8 @@ void cmTarget::DefineProperties(cmake *cm) "A property on a target that indicates if the target is excluded " "from the default build target. If it is not, then with a Makefile " "for example typing make will couse this target to be built as well. " - "The same concept applies to the default build of other generators."); + "The same concept applies to the default build of other generators.", + true); cm->DefineProperty ("INSTALL_NAME_DIR", cmProperty::TARGET, @@ -1313,7 +1314,6 @@ const char *cmTarget::GetProperty(const char* prop, } return 0; } - bool chain = false; const char *retVal = this->Properties.GetPropertyValue(prop, scope, chain); @@ -1321,7 +1321,6 @@ const char *cmTarget::GetProperty(const char* prop, { return this->Makefile->GetProperty(prop,scope); } - return retVal; } |