mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
14c44d0b0a
Instead of including the IDLs directly, define a local IDL that #includes them, with XAUDIO2_VER defined, and include that generated header. Get rid of compat.c, and use XAUDIO2_VER to modify the code in the other source files. Build the tests for both xaudio2_7 and xaudio2_8 using PARENTSRC, and use XAUDIO2_VER to select between them. This mirrors the approach taken for d3dcompiler, and makes it easier to test more xaudio2 versions in the future.
15 lines
305 B
Makefile
15 lines
305 B
Makefile
EXTRADEFS = -DXAUDIO2_VER=8
|
|
MODULE = xaudio2_8.dll
|
|
IMPORTLIB = xaudio2_8
|
|
IMPORTS = $(FAUDIO_PE_LIBS) advapi32 ole32 user32 uuid
|
|
EXTRAINCL = $(FAUDIO_PE_CFLAGS)
|
|
PARENTSRC = ../xaudio2_7
|
|
|
|
C_SRCS = \
|
|
x3daudio.c \
|
|
xapo.c \
|
|
xapofx.c \
|
|
xaudio_allocator.c \
|
|
xaudio_dll.c
|
|
|
|
IDL_SRCS = xaudio_classes.idl
|