mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-01-23 03:58:59 +00:00
f8aba67c56
not needed, only using functionality of decode.c
12 lines
241 B
CMake
12 lines
241 B
CMake
set(HEADERS)
|
|
set(CPPS
|
|
aencode.cpp
|
|
adecode.cpp)
|
|
|
|
# these are the relevant source files from upstream libacm (https://github.com/markokr/libacm/)
|
|
set(LIB_SRC
|
|
decode.c
|
|
libacm.h)
|
|
|
|
add_library(libacm STATIC ${HEADERS} ${CPPS} ${LIB_SRC})
|