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

SNOW-585 (VWR-20679) FIXED Build failure when the FMOD lib is not present.

Also added Mac version of the same fix, and corrected the warning message in the Linux version that was already there.
parent 3b59f688
No related branches found
No related tags found
No related merge requests found
......@@ -520,6 +520,7 @@ Robin Cornelius
SNOW-484
SNOW-506
SNOW-514
SNOW-585
VWR-2488
VWR-9557
VWR-11128
......
......@@ -316,8 +316,11 @@ class WindowsManifest(ViewerManifest):
# For use in crash reporting (generates minidumps)
self.path("dbghelp.dll")
# For using FMOD for sound... DJS
self.path("fmod.dll")
try:
# FMOD for sound
self.path("fmod.dll")
except:
print "Skipping FMOD - not found"
self.enable_no_crt_manifest_check()
......@@ -643,8 +646,11 @@ class DarwinManifest(ViewerManifest):
):
self.path(os.path.join(libdir, libfile), libfile)
#libfmodwrapper.dylib
self.path(self.args['configuration'] + "/libfmodwrapper.dylib", "libfmodwrapper.dylib")
try:
# FMOD for sound
self.path(self.args['configuration'] + "/libfmodwrapper.dylib", "libfmodwrapper.dylib")
except:
print "Skipping FMOD - not found"
# our apps
self.path("../mac_crash_logger/" + self.args['configuration'] + "/mac-crash-logger.app", "mac-crash-logger.app")
......@@ -933,7 +939,7 @@ class Linux_i686Manifest(LinuxManifest):
self.path("libfmod-3.75.so")
pass
except:
print "Skipping libkdu_v42R.so - not found"
print "Skipping libfmod-3.75.so - not found"
pass
self.end_prefix("lib")
......
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