Descent3/dd_sndlib/CMakeLists.txt
Louis Gombert 13711c3036 Remove Aureal support
D3 used to support Aureal 3-Dimensional sound cards, providing 3D spatial audio. The hardware and drivers is outdated, so all support in code has been removed, including UI mixer setting.

Read more about A3D here: https://en.wikipedia.org/wiki/Aureal_Semiconductor#A3D
2024-05-14 00:56:34 +02:00

19 lines
271 B
CMake

set(HEADERS
auddev.h
ds3dlib_internal.h
eax.h
eax2.h
vmanpset.h)
set(CPPS
ddsoundload.cpp
Ds3dlib.cpp
dsound3d.cpp
eax.cpp
geometry.cpp
ssl_lib.cpp)
add_library(dd_sndlib STATIC ${HEADERS} ${CPPS})
target_link_libraries(dd_sndlib PRIVATE
cfile
)