mirror of
https://github.com/kevinbentley/Descent3.git
synced 2026-04-05 05:00:06 -04:00
- tabs to spaces - use Unix line endings everywhere - newline at end of file - remove trailing white space - no space between keywords and opening parenthesis - use 2 spaces to indent
7 lines
131 B
CMake
7 lines
131 B
CMake
set(HEADERS)
|
|
set(CPPS
|
|
encoder.cpp)
|
|
|
|
add_library(AudioEncode STATIC ${HEADERS} ${CPPS})
|
|
target_link_libraries(AudioEncode libacm)
|