mame/3rdparty/portaudio/qa/loopback/CMakeLists.txt
arbee 645bbe989b PortAudio: sync to upstream GitHub revision 0e9b386a1053261340bc8bb32335484ef77b258b [R. Belmont, PortAudio team]
* Tested and works on Windows, macOS, and Linux.
* Fixes compatibility with macOS Ventura and bugfixes WASAPI and WDM-KS on Windows.
2023-04-01 19:03:31 -04:00

20 lines
451 B
CMake

add_executable(paloopback
src/audio_analyzer.c
src/audio_analyzer.h
src/biquad_filter.c
src/biquad_filter.h
src/paqa.c
src/paqa_tools.c
src/paqa_tools.h
src/qa_tools.h
src/test_audio_analyzer.c
src/test_audio_analyzer.h
src/write_wav.c
src/write_wav.h
)
target_include_directories(paloopback PRIVATE ..)
target_link_libraries(paloopback PortAudio)
if(UNIX)
target_link_libraries(paloopback m)
endif()