Skip to content
Snippets Groups Projects
Commit 5c6cb4c9 authored by Aimee Linden's avatar Aimee Linden
Browse files

Persuade Windows to package the prebuilt llkdu.dll

parent 73ca4eac
No related branches found
No related tags found
No related merge requests found
...@@ -257,14 +257,16 @@ class WindowsManifest(ViewerManifest): ...@@ -257,14 +257,16 @@ class WindowsManifest(ViewerManifest):
if self.prefix(src=os.path.join(os.pardir, 'sharedlibs', self.args['configuration']), if self.prefix(src=os.path.join(os.pardir, 'sharedlibs', self.args['configuration']),
dst=""): dst=""):
self.enable_crt_manifest_check() self.enable_no_crt_manifest_check()
# Get kdu dll, continue if missing. # Get kdu dll, continue if missing.
try: try:
self.path('llkdu.dll', dst='llkdu.dll') self.path('llkdu.dll', dst='llkdu.dll')
except RuntimeError: except RuntimeError:
print "Skipping llkdu.dll" print "Skipping llkdu.dll"
self.enable_crt_manifest_check()
# Get llcommon and deps. If missing assume static linkage and continue. # Get llcommon and deps. If missing assume static linkage and continue.
try: try:
self.path('llcommon.dll') self.path('llcommon.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