diff options
author | Brad King <brad.king@kitware.com> | 2007-08-03 19:44:25 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2007-08-03 19:44:25 (GMT) |
commit | d7118006deaf15c6e1b796b33cd883dd9bfa14fb (patch) | |
tree | 49c49f865d590cb017a04b2f14846c2826810909 /Source/cmTarget.cxx | |
parent | 11604e72c425a3dba689dc42b0c34fdd2a9c8ff0 (diff) | |
download | CMake-d7118006deaf15c6e1b796b33cd883dd9bfa14fb.zip CMake-d7118006deaf15c6e1b796b33cd883dd9bfa14fb.tar.gz CMake-d7118006deaf15c6e1b796b33cd883dd9bfa14fb.tar.bz2 |
BUG: Target exclusion-from-all tests should always use the root local generator associated with the all target being tested.
Diffstat (limited to 'Source/cmTarget.cxx')
-rw-r--r-- | Source/cmTarget.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx index 18b0ad1..42bf043 100644 --- a/Source/cmTarget.cxx +++ b/Source/cmTarget.cxx @@ -122,9 +122,9 @@ void cmTarget::DefineProperties(cmake *cm) "Exclude the target from the all target.", "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. " + "for example typing make will cause this target to be built. " "The same concept applies to the default build of other generators.", - true); + false); cm->DefineProperty ("INSTALL_NAME_DIR", cmProperty::TARGET, |