mirror of
https://github.com/FWGS/xash3d-fwgs
synced 2025-01-22 08:20:05 +01:00
engine: wscript: move libasound uselib under linux condition, as the ALSA interface is only relevant for Linux
This commit is contained in:
parent
e3934af7d1
commit
48e44f0057
@ -144,12 +144,13 @@ def build(bld):
|
||||
libs += ['USER32', 'SHELL32', 'GDI32', 'ADVAPI32', 'DBGHELP', 'PSAPI', 'WS2_32' ]
|
||||
source += bld.path.ant_glob(['platform/win32/*.c'])
|
||||
elif bld.env.DEST_OS not in ['dos', 'nswitch', 'psvita']: #posix
|
||||
libs += [ 'M', 'RT', 'PTHREAD', 'ASOUND']
|
||||
libs += [ 'M', 'RT', 'PTHREAD']
|
||||
if not bld.env.STATIC:
|
||||
libs += ['DL']
|
||||
source += bld.path.ant_glob(['platform/posix/*.c'])
|
||||
|
||||
if bld.env.DEST_OS == 'linux':
|
||||
libs += ['ASOUND']
|
||||
source += bld.path.ant_glob(['platform/linux/*.c'])
|
||||
|
||||
if bld.env.DEST_OS == 'irix':
|
||||
|
Loading…
x
Reference in New Issue
Block a user