You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
927B

  1. include_directories(..)
  2. if (WIN32)
  3. include_directories(../include)
  4. endif (WIN32)
  5. list(GET LIB_TARGETS 0 LIBRTAUDIO)
  6. add_executable(audioprobe audioprobe.cpp)
  7. target_link_libraries(audioprobe ${LIBRTAUDIO} ${LINKLIBS})
  8. add_executable(playsaw playsaw.cpp)
  9. target_link_libraries(playsaw ${LIBRTAUDIO} ${LINKLIBS})
  10. add_executable(playraw playraw.cpp)
  11. target_link_libraries(playraw ${LIBRTAUDIO} ${LINKLIBS})
  12. add_executable(record record.cpp)
  13. target_link_libraries(record ${LIBRTAUDIO} ${LINKLIBS})
  14. add_executable(duplex duplex.cpp)
  15. target_link_libraries(duplex ${LIBRTAUDIO} ${LINKLIBS})
  16. add_executable(apinames apinames.cpp)
  17. target_link_libraries(apinames ${LIBRTAUDIO} ${LINKLIBS})
  18. add_executable(testall testall.cpp)
  19. target_link_libraries(testall ${LIBRTAUDIO} ${LINKLIBS})
  20. add_executable(teststops teststops.cpp)
  21. target_link_libraries(teststops ${LIBRTAUDIO} ${LINKLIBS})
  22. add_test(NAME apinames COMMAND apinames)