summaryrefslogtreecommitdiffstats
path: root/Source/cmake.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2008-03-07 21:36:57 (GMT)
committerBrad King <brad.king@kitware.com>2008-03-07 21:36:57 (GMT)
commit46bf0347a3e86e78063f2d5df2d8f65a3ea2ac25 (patch)
treeb62cc6130db6975cbc1434c00686903dd4d56096 /Source/cmake.cxx
parent354abb72d9de0fbcf7e02bc0aeb32f919b19ccac (diff)
downloadCMake-46bf0347a3e86e78063f2d5df2d8f65a3ea2ac25.zip
CMake-46bf0347a3e86e78063f2d5df2d8f65a3ea2ac25.tar.gz
CMake-46bf0347a3e86e78063f2d5df2d8f65a3ea2ac25.tar.bz2
ENH: Finish creating, documenting, and enforcing policy CMP_0002.
Diffstat (limited to 'Source/cmake.cxx')
-rw-r--r--Source/cmake.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx
index 356772a..98aa0cd 100644
--- a/Source/cmake.cxx
+++ b/Source/cmake.cxx
@@ -3299,7 +3299,7 @@ void cmake::DefineProperties(cmake *cm)
"ALLOW_DUPLICATE_CUSTOM_TARGETS", cmProperty::GLOBAL,
"Allow duplicate custom targets to be created.",
"Normally CMake requires that all targets built in a project have "
- "globally unique names. "
+ "globally unique logical names (see policy CMP_0002). "
"This is necessary to generate meaningful project file names in "
"Xcode and VS IDE generators. "
"It also allows the target names to be referenced unambiguously.\n"
@@ -3309,7 +3309,7 @@ void cmake::DefineProperties(cmake *cm)
"not wish to support Xcode or VS IDE generators, one may set this "
"property to true to allow duplicate custom targets. "
"The property allows multiple add_custom_target command calls in "
- "*different directories* to specify the same target name. "
+ "different directories to specify the same target name. "
"However, setting this property will cause non-Makefile generators "
"to produce an error and refuse to generate the project."
);