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

neotools: adpcm-a split backend code

This commit is contained in:
2023-12-10 11:36:05 +11:00
parent 46c78c24e1
commit ae14868953
3 changed files with 58 additions and 50 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.h adpcm.c)
add_executable(adpcm adpcm.h libadpcma.c 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>)