diff options
author | Robert Dailey <rcdailey@gmail.com> | 2011-11-01 00:04:08 (GMT) |
---|---|---|
committer | David Cole <david.cole@kitware.com> | 2011-11-01 15:29:08 (GMT) |
commit | b0f0b3e4405cb663fd5757441f556ee6cd3fac8c (patch) | |
tree | 91dcde865fa16ca629a778a06741ac327f27ec17 /Source/cmTarget.cxx | |
parent | 5e1c2f81a76943cce994f133fca71966aa35c1b4 (diff) | |
download | CMake-b0f0b3e4405cb663fd5757441f556ee6cd3fac8c.zip CMake-b0f0b3e4405cb663fd5757441f556ee6cd3fac8c.tar.gz CMake-b0f0b3e4405cb663fd5757441f556ee6cd3fac8c.tar.bz2 |
VS: Add VS_SCC_AUXPATH target property (#12549)
Maps to SccAuxPath tag in VCPROJ files.
Diffstat (limited to 'Source/cmTarget.cxx')
-rw-r--r-- | Source/cmTarget.cxx | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx index f7d3ba9..6bf7ec9 100644 --- a/Source/cmTarget.cxx +++ b/Source/cmTarget.cxx @@ -1011,7 +1011,7 @@ void cmTarget::DefineProperties(cmake *cm) "provider property."); cm->DefineProperty ("VS_SCC_LOCALPATH", cmProperty::TARGET, - "Visual Studio Source Code Control Provider.", + "Visual Studio Source Code Control Local Path.", "Can be set to change the visual studio source code control " "local path property."); cm->DefineProperty @@ -1020,6 +1020,11 @@ void cmTarget::DefineProperties(cmake *cm) "Can be set to change the visual studio source code control " "project name property."); cm->DefineProperty + ("VS_SCC_AUXPATH", cmProperty::TARGET, + "Visual Studio Source Code Control Aux Path.", + "Can be set to change the visual studio source code control " + "auxpath property."); + cm->DefineProperty ("VS_GLOBAL_<variable>", cmProperty::TARGET, "Visual Studio project-specific global variable.", "Tell the Visual Studio generator to set the global variable " |