diff options
author | Sumit Bhardwaj <bhardwajs@outlook.com> | 2021-12-25 06:38:13 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2022-02-12 17:09:09 (GMT) |
commit | 925da7d428831f8e1db4eb9b632b066af4c9d6e1 (patch) | |
tree | 865ae788a43d2c54698350e50db0e5ca844dc42e /Source/cmVisualStudio10TargetGenerator.h | |
parent | 11b8366e55e13661854fc9ecb33efbe0863ae0e7 (diff) | |
download | CMake-925da7d428831f8e1db4eb9b632b066af4c9d6e1.zip CMake-925da7d428831f8e1db4eb9b632b066af4c9d6e1.tar.gz CMake-925da7d428831f8e1db4eb9b632b066af4c9d6e1.tar.bz2 |
VS: Write ZERO_CHECK.proj for VS19 and above
Use VsProjectType::proj as the file format for ZERO_CHECK and write
ZERO_CHECK.proj as a msbuild dependency for other projects.
Diffstat (limited to 'Source/cmVisualStudio10TargetGenerator.h')
-rw-r--r-- | Source/cmVisualStudio10TargetGenerator.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Source/cmVisualStudio10TargetGenerator.h b/Source/cmVisualStudio10TargetGenerator.h index 8d777a3..5e74779 100644 --- a/Source/cmVisualStudio10TargetGenerator.h +++ b/Source/cmVisualStudio10TargetGenerator.h @@ -264,6 +264,13 @@ private: void WriteClassicMsBuildProjectFile(cmGeneratedFileStream& BuildFileStream); void WriteSdkStyleProjectFile(cmGeneratedFileStream& BuildFileStream); + void WriteZeroCheckProj(cmGeneratedFileStream& BuildFileStream); + void WriteZeroCheckBuildTarget(cmVisualStudio10TargetGenerator::Elem& e0, + const cmCustomCommand& command, + const cmSourceFile* source); + void WriteZeroCheckBeforeBuildTarget( + cmVisualStudio10TargetGenerator::Elem& e0); + void WriteCommonPropertyGroupGlobals( cmVisualStudio10TargetGenerator::Elem& e1); |