Remove audioconverter.

This has been superseded by the new CLI tool.
This commit is contained in:
David Reid
2026-06-30 06:57:44 +10:00
parent 19cbee7bc4
commit e867785385
2 changed files with 0 additions and 304 deletions
-15
View File
@@ -1053,21 +1053,6 @@ if (MINIAUDIO_BUILD_TOOLS)
target_compile_definitions(miniaudio_cli PRIVATE MA_NO_THREADING) # We want to be able to test device I/O without threading.
endif()
add_executable(audioconverter ${TOOLS_DIR}/audioconverter/audioconverter.c)
target_link_libraries(audioconverter PRIVATE ${COMMON_LINK_LIBRARIES})
if (TARGET libvorbis_interface)
target_link_libraries(audioconverter PRIVATE libvorbis_interface)
else()
target_compile_definitions(audioconverter PRIVATE MA_NO_LIBVORBIS)
message(STATUS "miniaudio_libvorbis is disabled. Vorbis support is disabled in audioconverter.")
endif()
if (TARGET libopus_interface)
target_link_libraries(audioconverter PRIVATE libopus_interface)
else()
target_compile_definitions(audioconverter PRIVATE MA_NO_LIBOPUS)
message(STATUS "miniaudio_libopus is disabled. Opus support is disabled in audioconverter.")
endif()
add_executable(madoc ${TOOLS_DIR}/madoc/madoc.c)
endif()