Make fmod2.0 compiling

Signed-off-by: Lirusaito <inusaito@gmail.com>
Added libraries to autobuild, mac build from Bitten
This commit is contained in:
Naiyako
2019-07-03 22:31:31 +02:00
committed by Lirusaito
parent b9e522fd8d
commit 4a6a81b5d4
4 changed files with 13 additions and 29 deletions

View File

@@ -479,16 +479,10 @@ class WindowsManifest(ViewerManifest):
# Get fmodstudio dll, continue if missing
try:
if(self.address_size == 64):
if self.args['configuration'].lower() == 'debug':
self.path("fmodL64.dll")
else:
self.path("fmod64.dll")
if self.args['configuration'].lower() == 'debug':
self.path("fmodL.dll")
else:
if self.args['configuration'].lower() == 'debug':
self.path("fmodL.dll")
else:
self.path("fmod.dll")
self.path("fmod.dll")
except:
print "Skipping fmodstudio audio library(assuming other audio engine)"