summaryrefslogtreecommitdiffstats
path: root/Source/cmTarget.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2013-05-16 18:36:11 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2013-05-16 18:36:11 (GMT)
commit1b4b64cd3c2f22260c74537cfaf84dc52d6cf86c (patch)
tree293c7f51d9bcf64e0d3ae4cf3632e3497de4e9d5 /Source/cmTarget.cxx
parent7e7b7fe4b320fedb838485a6bfcfb582cccf0fcc (diff)
parent87c0d16ab7e4128d81411db35ef05d4428b8c236 (diff)
downloadCMake-1b4b64cd3c2f22260c74537cfaf84dc52d6cf86c.zip
CMake-1b4b64cd3c2f22260c74537cfaf84dc52d6cf86c.tar.gz
CMake-1b4b64cd3c2f22260c74537cfaf84dc52d6cf86c.tar.bz2
Merge topic 'vs-no-compiler-pdb-setting'
87c0d16 Ninja: Fix OBJECT_DIR placeholder path conversion fb9f73d MSVC: Invoke 'link' directly for executables 42ba1b0 VS: Separate compiler and linker PDB files (#11899, #14062)
Diffstat (limited to 'Source/cmTarget.cxx')
-rw-r--r--Source/cmTarget.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx
index d14bfca..ac1146b 100644
--- a/Source/cmTarget.cxx
+++ b/Source/cmTarget.cxx
@@ -886,9 +886,9 @@ void cmTarget::DefineProperties(cmake *cm)
cm->DefineProperty
("PDB_NAME", cmProperty::TARGET,
- "Output name for MS debug symbols .pdb file.",
+ "Output name for MS debug symbols .pdb file from linker.",
"Set the base name for debug symbols file created for an "
- "executable or library target. "
+ "executable or shared library target. "
"If not set, the logical target name is used by default. "
"\n"
"This property is not implemented by the Visual Studio 6 generator.");
@@ -1397,9 +1397,9 @@ void cmTarget::DefineProperties(cmake *cm)
cm->DefineProperty
("PDB_OUTPUT_DIRECTORY", cmProperty::TARGET,
- "Output directory for MS debug symbols .pdb files.",
+ "Output directory for MS debug symbols .pdb file from linker.",
"This property specifies the directory into which the MS debug symbols "
- "will be placed. "
+ "will be placed by the linker. "
"This property is initialized by the value of the variable "
"CMAKE_PDB_OUTPUT_DIRECTORY if it is set when a target is created."
"\n"