diff options
author | Aaron Ten Clay <aarontc@aarontc.com> | 2011-11-23 19:11:00 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2011-11-28 16:44:04 (GMT) |
commit | a1f976ce0e62baf513c8726c59aba5f75a0335c6 (patch) | |
tree | 0c65a5f56cc01d0d935bf26041eedda188cfcd0b /Source/cmVisualStudio10TargetGenerator.h | |
parent | 57a85237ac8ebc429ebe442897169bc9369e0380 (diff) | |
download | CMake-a1f976ce0e62baf513c8726c59aba5f75a0335c6.zip CMake-a1f976ce0e62baf513c8726c59aba5f75a0335c6.tar.gz CMake-a1f976ce0e62baf513c8726c59aba5f75a0335c6.tar.bz2 |
VS: Add support for three new project properties (#12586)
VS_GLOBAL_PROJECT_TYPES: A string containing UUIDs to embed in the
Visual Studio project file under <ProjectTypes>.
VS_GLOBAL_KEYWORD: Allows specification of a keyword like "ManagedCProj"
instead of the default "Win32Proj", under <Keyword>
VS_DOTNET_REFERENCES: Semicolon-delimited list of .NET references to add
to the project, which creates a new <ItemGroup>.
Diffstat (limited to 'Source/cmVisualStudio10TargetGenerator.h')
-rw-r--r-- | Source/cmVisualStudio10TargetGenerator.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmVisualStudio10TargetGenerator.h b/Source/cmVisualStudio10TargetGenerator.h index c3c27f4..6702509 100644 --- a/Source/cmVisualStudio10TargetGenerator.h +++ b/Source/cmVisualStudio10TargetGenerator.h @@ -47,6 +47,7 @@ private: void WriteProjectConfigurations(); void WriteProjectConfigurationValues(); void WriteCLSources(); + void WriteDotNetReferences(); void WriteObjSources(); void WritePathAndIncrementalLinkOptions(); void WriteItemDefinitionGroups(); |