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

neotools: adpcm-a partial rewrite

This commit is contained in:
2023-12-10 11:28:52 +11:00
parent ff41b5415e
commit 46c78c24e1
3 changed files with 74 additions and 84 deletions

View File

@@ -4,7 +4,7 @@ if (USE_ZLIB AND NOT ZLIB_FOUND)
message(FATAL_ERROR "USE_ZLIB specified but Zlib was not found")
endif()
add_executable(adpcm adpcm.c)
add_executable(adpcm adpcm.h adpcm.c)
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>)