Skip to content
Snippets Groups Projects
Commit 023644b4 authored by Merov Linden's avatar Merov Linden
Browse files

STORM-137: Fix windows packaging issue, namely, do not require a manifest to move the fmod.dll

parent 6697a717
No related branches found
No related tags found
No related merge requests found
......@@ -259,12 +259,6 @@ def construct(self):
except RuntimeError:
print "Skipping llkdu.dll"
# Get fmod dll, continue if missing
try:
self.path("fmod.dll")
except:
print "Skipping fmod.dll"
# Get llcommon and deps. If missing assume static linkage and continue.
try:
self.path('llcommon.dll')
......@@ -277,6 +271,12 @@ def construct(self):
self.disable_manifest_check()
# Get fmod dll, continue if missing
try:
self.path("fmod.dll")
except:
print "Skipping fmod.dll"
# For textures
if self.args['configuration'].lower() == 'debug':
self.path("openjpegd.dll")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment