diff options
author | Gilles Khouzam <gillesk@microsoft.com> | 2014-09-18 21:14:54 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-09-19 17:46:00 (GMT) |
commit | d4ca8fb2bd8c6e6a84bce2b7f91142f325e3d489 (patch) | |
tree | e5b5dc0bab83f755961dc0ca3e3c5a75afac00eb | |
parent | 3689c43a8c62ca5883d776ee75a34f145d03ab7a (diff) | |
download | CMake-d4ca8fb2bd8c6e6a84bce2b7f91142f325e3d489.zip CMake-d4ca8fb2bd8c6e6a84bce2b7f91142f325e3d489.tar.gz CMake-d4ca8fb2bd8c6e6a84bce2b7f91142f325e3d489.tar.bz2 |
VS: Add Certificates to .vcxproj files
After certificates were moved into their own category in
cmGeneratorTarget, that category was not added for output by the VS 10
generator. Add it now.
-rw-r--r-- | Source/cmVisualStudio10TargetGenerator.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmVisualStudio10TargetGenerator.cxx b/Source/cmVisualStudio10TargetGenerator.cxx index 4b5c83f..fc8fccd 100644 --- a/Source/cmVisualStudio10TargetGenerator.cxx +++ b/Source/cmVisualStudio10TargetGenerator.cxx @@ -1330,6 +1330,10 @@ void cmVisualStudio10TargetGenerator::WriteAllSources() this->GeneratorTarget->GetAppManifest(manifestSources, ""); this->WriteSources("AppxManifest", manifestSources); + std::vector<cmSourceFile const*> certificateSources; + this->GeneratorTarget->GetCertificates(certificateSources, ""); + this->WriteSources("None", certificateSources); + std::vector<cmSourceFile const*> externalObjects; this->GeneratorTarget->GetExternalObjects(externalObjects, ""); for(std::vector<cmSourceFile const*>::iterator |