summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2008-10-07 20:46:25 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2008-10-07 20:46:25 (GMT)
commit086cf607c3493741a5b0bf9ac51a800be43dfdf4 (patch)
tree01a53f12987ec0950072f4e083a8e8bdcd537179 /Source
parent637418a8355cf2bc0aa0796c4bd99a65f793c1ed (diff)
downloadCMake-086cf607c3493741a5b0bf9ac51a800be43dfdf4.zip
CMake-086cf607c3493741a5b0bf9ac51a800be43dfdf4.tar.gz
CMake-086cf607c3493741a5b0bf9ac51a800be43dfdf4.tar.bz2
ENH: add missing property definitions
Diffstat (limited to 'Source')
-rw-r--r--Source/cmTarget.cxx26
1 files changed, 26 insertions, 0 deletions
diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx
index 18302ec..6c36e50 100644
--- a/Source/cmTarget.cxx
+++ b/Source/cmTarget.cxx
@@ -662,6 +662,32 @@ void cmTarget::DefineProperties(cmake *cm)
"The names returned are suitable for passing to the "
"set_source_files_properties command.");
+ cm->DefineProperty
+ ("PROJECT_LABEL", cmProperty::TARGET,
+ "Change the name of a target in an IDE.",
+ "Can be used to change the name of the target in an IDE "
+ "like visual stuido. ");
+ cm->DefineProperty
+ ("VS_KEYWORD", cmProperty::TARGET,
+ "Visual Studio project keyword.",
+ "Can be set to change the visual studio keyword, for example "
+ "QT integration works better if this is set to Qt4VSv1.0. ");
+ cm->DefineProperty
+ ("VS_SCC_PROVIDER", cmProperty::TARGET,
+ "Visual Studio Source Code Control Provider.",
+ "Can be set to change the visual studio source code control "
+ "provider property.");
+ cm->DefineProperty
+ ("VS_SCC_LOCALPATH", cmProperty::TARGET,
+ "Visual Studio Source Code Control Provider.",
+ "Can be set to change the visual studio source code control "
+ "local path property.");
+ cm->DefineProperty
+ ("VS_SCC_PROJECTNAME", cmProperty::TARGET,
+ "Visual Studio Source Code Control Project.",
+ "Can be set to change the visual studio source code control "
+ "project name property.");
+
#if 0
cm->DefineProperty
("OBJECT_FILES", cmProperty::TARGET,