Fix building a bitrock installer with MinGW binaries

Summary:
This simply fixes the errors, one will see if an installer is created after
a MinGW build. This does not change the fact that a MinGW installer is
not supported and not necessary. The installed software will not be able
to run due to missing dependencies. But the installer can be created and
executed for testing.

Reviewers: #swift_pilot_client, kbasan

Reviewed By: #swift_pilot_client, kbasan

Subscribers: jenkins

Differential Revision: https://dev.swift-project.org/D67
This commit is contained in:
Roland Winklmeier
2017-11-29 15:28:10 +01:00
parent bd1d4eecf6
commit d8c156a762

View File

@@ -18,7 +18,8 @@
<platforms>windows</platforms> <platforms>windows</platforms>
<distributionFileList> <distributionFileList>
<distributionFile> <distributionFile>
<origin>../../dist/bin/vatlib.dll</origin> <allowWildcards>1</allowWildcards>
<origin>../../dist/bin/*vatlib*.dll</origin>
</distributionFile> </distributionFile>
<distributionFile> <distributionFile>
<allowWildcards>1</allowWildcards> <allowWildcards>1</allowWildcards>
@@ -26,17 +27,19 @@
</distributionFile> </distributionFile>
<distributionFile> <distributionFile>
<allowWildcards>1</allowWildcards> <allowWildcards>1</allowWildcards>
<origin>../../dist/bin/SimConnect*</origin> <origin>../../dist/bin/SimConnect*.dll</origin>
</distributionFile> </distributionFile>
<distributionFile> <distributionFile>
<origin>../../dist/bin/speexdsp.dll</origin> <allowWildcards>1</allowWildcards>
<origin>../../dist/bin/*speexdsp*.dll</origin>
</distributionFile> </distributionFile>
<distributionFile> <distributionFile>
<allowWildcards>1</allowWildcards> <allowWildcards>1</allowWildcards>
<origin>../../dist/bin/*opus*.dll</origin> <origin>../../dist/bin/*opus*.dll</origin>
</distributionFile> </distributionFile>
<distributionFile> <distributionFile>
<origin>../../dist/bin/swift_crashpad_handler.exe</origin> <allowWildcards>1</allowWildcards>
<origin>../../dist/bin/*swift_crashpad_handler.exe</origin>
</distributionFile> </distributionFile>
</distributionFileList> </distributionFileList>
</folder> </folder>