mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-01-22 19:55:23 +00:00
60c5dbf1fe
This can help with CMake IDE integration and file indexing.
20 lines
323 B
CMake
20 lines
323 B
CMake
set(HEADERS
|
|
adecode.h
|
|
aencode.h
|
|
audio_encode.h)
|
|
set(CPPS
|
|
adecode.cpp
|
|
aencode.cpp
|
|
encoder.cpp
|
|
)
|
|
|
|
add_library(AudioEncode STATIC ${HEADERS} ${CPPS})
|
|
target_link_libraries(AudioEncode PRIVATE
|
|
libacm
|
|
)
|
|
target_include_directories(AudioEncode PUBLIC
|
|
$<BUILD_INTERFACE:
|
|
${PROJECT_SOURCE_DIR}/AudioEncode
|
|
>
|
|
)
|