mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-01-23 03:58:59 +00:00
13711c3036
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
19 lines
271 B
CMake
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
|
|
)
|