mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-01-23 12:08:56 +00:00
17 lines
292 B
CMake
17 lines
292 B
CMake
set(HEADERS)
|
|
set(CPPS
|
|
osfarchive.cpp
|
|
streamaudio.cpp)
|
|
|
|
add_library(stream_audio STATIC ${HEADERS} ${CPPS})
|
|
target_link_libraries(stream_audio PRIVATE
|
|
ddio
|
|
libacm
|
|
sndlib
|
|
)
|
|
target_include_directories(stream_audio PUBLIC
|
|
$<BUILD_INTERFACE:
|
|
${PROJECT_SOURCE_DIR}/stream_audio
|
|
>
|
|
)
|