mirror of
https://github.com/holub/mame
synced 2025-07-14 14:02:01 +03:00

* Tested and works on Windows, macOS, and Linux. * Fixes compatibility with macOS Ventura and bugfixes WASAPI and WDM-KS on Windows.
20 lines
451 B
CMake
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()
|