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.

26 lines
759B

  1. include_directories(..)
  2. if (WIN32)
  3. include_directories(../include)
  4. endif (WIN32)
  5. add_executable(audioprobe audioprobe.cpp)
  6. target_link_libraries(audioprobe rtaudio_static ${LINKLIBS})
  7. add_executable(playsaw playsaw.cpp)
  8. target_link_libraries(playsaw rtaudio_static ${LINKLIBS})
  9. add_executable(playraw playraw.cpp)
  10. target_link_libraries(playraw rtaudio_static ${LINKLIBS})
  11. add_executable(record record.cpp)
  12. target_link_libraries(record rtaudio_static ${LINKLIBS})
  13. add_executable(duplex duplex.cpp)
  14. target_link_libraries(duplex rtaudio_static ${LINKLIBS})
  15. add_executable(testall testall.cpp)
  16. target_link_libraries(testall rtaudio_static ${LINKLIBS})
  17. add_executable(teststops teststops.cpp)
  18. target_link_libraries(teststops rtaudio_static ${LINKLIBS})