diff options
author | John Farrier <john.farrier@digitalinblue.com> | 2013-05-30 00:16:36 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2013-05-31 13:15:30 (GMT) |
commit | cca955a27cf3fc8344ee3dce213472b61e1edef7 (patch) | |
tree | 538ebba5c8aa38095409b4d86bd98f18c0de05c9 /Source/cmTarget.cxx | |
parent | 79ec7868d0f08c9ff2e6fa6454b205132acecc24 (diff) | |
download | CMake-cca955a27cf3fc8344ee3dce213472b61e1edef7.zip CMake-cca955a27cf3fc8344ee3dce213472b61e1edef7.tar.gz CMake-cca955a27cf3fc8344ee3dce213472b61e1edef7.tar.bz2 |
VS: Add VS_GLOBAL_ROOTNAMESPACE target property
Add a setting for Visual Studio projects for the root namespace in the
"Globals" PropertyGroup section of the project file.
Diffstat (limited to 'Source/cmTarget.cxx')
-rw-r--r-- | Source/cmTarget.cxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx index 66c22b1..40c9798 100644 --- a/Source/cmTarget.cxx +++ b/Source/cmTarget.cxx @@ -1303,6 +1303,11 @@ void cmTarget::DefineProperties(cmake *cm) "this value with \"ManagedCProj\", for example, in a Visual " "Studio managed C++ unit test project."); cm->DefineProperty + ("VS_GLOBAL_ROOTNAMESPACE", cmProperty::TARGET, + "Visual Studio project root namespace.", + "Sets the \"RootNamespace\" attribute for a generated Visual Studio " + "project. The attribute will be generated only if this is set."); + cm->DefineProperty ("VS_DOTNET_REFERENCES", cmProperty::TARGET, "Visual Studio managed project .NET references", "Adds one or more semicolon-delimited .NET references to a " |