mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-01-23 12:08:56 +00:00
21 lines
296 B
CMake
21 lines
296 B
CMake
set(HEADERS
|
|
auddev.h
|
|
ds3dlib_internal.h
|
|
eax.h
|
|
eax2.h
|
|
ia3dapi.h
|
|
Ia3dutil.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
|
|
)
|