1
0
mirror of https://github.com/ScrelliCopter/VGM-Tools synced 2025-02-21 04:09:25 +11:00

neotools: make adpcmb encoder & decoder streamable (encoder untested)

This commit is contained in:
2023-12-29 03:25:14 +11:00
parent 9f6c0664ff
commit 70bbf3d0d1
3 changed files with 112 additions and 89 deletions

View File

@@ -9,7 +9,7 @@ set_property(TARGET adpcm PROPERTY C_STANDARD 99)
target_compile_options(adpcm PRIVATE ${WARNINGS})
target_link_libraries(adpcm Common::wave $<$<C_COMPILER_ID:Clang,GNU>:m>)
add_executable(adpcmb adpcmb.c)
add_executable(adpcmb adpcmb.h adpcmb.c)
target_compile_options(adpcmb PRIVATE ${WARNINGS})
target_link_libraries(adpcmb Common::wave)