diff options
author | Brad King <brad.king@kitware.com> | 2014-09-22 13:13:19 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2014-09-22 13:13:19 (GMT) |
commit | 6771c0bbdbfcbcf2a217118f28162918e969bfc5 (patch) | |
tree | f61410e63ac9a8232bacf79da7c91e49cbe46554 | |
parent | 829e9eca04026cd51fa4f419b0d2a77522a010fa (diff) | |
parent | d4ca8fb2bd8c6e6a84bce2b7f91142f325e3d489 (diff) | |
download | CMake-6771c0bbdbfcbcf2a217118f28162918e969bfc5.zip CMake-6771c0bbdbfcbcf2a217118f28162918e969bfc5.tar.gz CMake-6771c0bbdbfcbcf2a217118f28162918e969bfc5.tar.bz2 |
Merge topic 'vs-windows-store-certifictes'
d4ca8fb2 VS: Add Certificates to .vcxproj files
-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 |