Merge branch 'fix-VS-resources-pri-path' into release
This commit is contained in:
commit
1bc8a66d07
|
@ -2736,8 +2736,10 @@ void cmVisualStudio10TargetGenerator::WriteWinRTPackageCertificateKeyFile()
|
||||||
(*this->BuildFileStream) << cmVS10EscapeXML(artifactDir)
|
(*this->BuildFileStream) << cmVS10EscapeXML(artifactDir)
|
||||||
<< "\\</AppxPackageArtifactsDir>\n";
|
<< "\\</AppxPackageArtifactsDir>\n";
|
||||||
this->WriteString("<ProjectPriFullPath>", 2);
|
this->WriteString("<ProjectPriFullPath>", 2);
|
||||||
(*this->BuildFileStream) << cmVS10EscapeXML(artifactDir)
|
std::string resourcePriFile =
|
||||||
<< "\\resources.pri</ProjectPriFullPath>\n";
|
this->DefaultArtifactDir + "/resources.pri";
|
||||||
|
this->ConvertToWindowsSlash(resourcePriFile);
|
||||||
|
(*this->BuildFileStream) << resourcePriFile << "</ProjectPriFullPath>\n";
|
||||||
|
|
||||||
// If we are missing files and we don't have a certificate and
|
// If we are missing files and we don't have a certificate and
|
||||||
// aren't targeting WP8.0, add a default certificate
|
// aren't targeting WP8.0, add a default certificate
|
||||||
|
|
Loading…
Reference in New Issue