diff options
author | Brad King <brad.king@kitware.com> | 2012-09-25 18:36:03 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2012-09-25 19:23:35 (GMT) |
commit | efc83b369b26624e7f0fb90d9125ef5ec6d1f7fa (patch) | |
tree | e8a44e68eb8f3149e6873a36914fd8cde3e1140e /Source | |
parent | b294457e2b96f40d01a22b867666277495977fa8 (diff) | |
download | CMake-efc83b369b26624e7f0fb90d9125ef5ec6d1f7fa.zip CMake-efc83b369b26624e7f0fb90d9125ef5ec6d1f7fa.tar.gz CMake-efc83b369b26624e7f0fb90d9125ef5ec6d1f7fa.tar.bz2 |
Document that PDB_(NAME|OUTPUT_DIRECTORY) are ignored for VS 6
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmTarget.cxx | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx index b932afc..64950d8 100644 --- a/Source/cmTarget.cxx +++ b/Source/cmTarget.cxx @@ -746,12 +746,16 @@ void cmTarget::DefineProperties(cmake *cm) "Output name for MS debug symbols .pdb file.", "Set the base name for debug symbols file created for an " "executable or library target. " - "If not set, the logical target name is used by default."); + "If not set, the logical target name is used by default. " + "\n" + "This property is not implemented by the Visual Studio 6 generator."); cm->DefineProperty ("PDB_NAME_<CONFIG>", cmProperty::TARGET, "Per-configuration name for MS debug symbols .pdb file. ", - "This is the configuration-specific version of PDB_NAME."); + "This is the configuration-specific version of PDB_NAME. " + "\n" + "This property is not implemented by the Visual Studio 6 generator."); cm->DefineProperty ("PRE_INSTALL_SCRIPT", cmProperty::TARGET, @@ -1208,7 +1212,9 @@ void cmTarget::DefineProperties(cmake *cm) "This property specifies the directory into which the MS debug symbols " "will be placed. " "This property is initialized by the value of the variable " - "CMAKE_PDB_OUTPUT_DIRECTORY if it is set when a target is created."); + "CMAKE_PDB_OUTPUT_DIRECTORY if it is set when a target is created." + "\n" + "This property is not implemented by the Visual Studio 6 generator."); cm->DefineProperty ("PDB_OUTPUT_DIRECTORY_<CONFIG>", cmProperty::TARGET, "Per-configuration output directory for MS debug symbols .pdb files.", @@ -1217,7 +1223,9 @@ void cmTarget::DefineProperties(cmake *cm) "a per-configuration subdirectory to the specified directory. " "This property is initialized by the value of the variable " "CMAKE_PDB_OUTPUT_DIRECTORY_<CONFIG> " - "if it is set when a target is created."); + "if it is set when a target is created." + "\n" + "This property is not implemented by the Visual Studio 6 generator."); cm->DefineProperty ("ARCHIVE_OUTPUT_NAME", cmProperty::TARGET, |