Descent3/libacm/CMakeLists.txt
Daniel Gibson f8aba67c56 Remove libacm/util.c
not needed, only using functionality of decode.c
2024-04-21 18:35:56 +02:00

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})