Skip to content

Commit

Permalink
Import source of libacm 1.3, integrate it into CMake build
Browse files Browse the repository at this point in the history
only the sourcefiles needed here,
from https://github.com/markokr/libacm
  • Loading branch information
DanielGibson committed Apr 21, 2024
1 parent f61f349 commit f6f3c33
Show file tree
Hide file tree
Showing 5 changed files with 1,317 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .clang-format-ignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
# 3rd party libs
lib/debugbreak.h
libacm/libacm.h
libacm/decode.c
libacm/util.c
8 changes: 7 additions & 1 deletion libacm/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,10 @@ set(CPPS
aencode.cpp
libacm.cpp)

add_library(libacm STATIC ${HEADERS} ${CPPS})
# these are the relevant source files from upstream libacm (https://github.com/markokr/libacm/)
set(LIB_SRC
decode.c
util.c
libacm.h)

add_library(libacm STATIC ${HEADERS} ${CPPS} ${LIB_SRC})
Loading

0 comments on commit f6f3c33

Please sign in to comment.