Merge pull request #218 from thestk/fix-wasapi-resampler-crash
[rtaudio.git] / tests / CMakeLists.txt
index 5c08f6d3d71a90e9895c378ff04efaa85a3955f3..f67ff2172660b0e5afc8239e0fd8c5cc087fc70b 100644 (file)
@@ -20,8 +20,13 @@ target_link_libraries(record ${LIBRTAUDIO} ${LINKLIBS})
 add_executable(duplex duplex.cpp)
 target_link_libraries(duplex ${LIBRTAUDIO} ${LINKLIBS})
 
+add_executable(apinames apinames.cpp)
+target_link_libraries(apinames ${LIBRTAUDIO} ${LINKLIBS})
+
 add_executable(testall testall.cpp)
 target_link_libraries(testall ${LIBRTAUDIO} ${LINKLIBS})
 
 add_executable(teststops teststops.cpp)
 target_link_libraries(teststops ${LIBRTAUDIO} ${LINKLIBS})
+
+add_test(NAME apinames COMMAND apinames)