Fix typo in previous.
[rtaudio-cdist.git] / tests / CMakeLists.txt
1 include_directories(..)
2 if (WIN32)
3     include_directories(../include)
4 endif (WIN32)
5
6 add_executable(audioprobe audioprobe.cpp)
7 target_link_libraries(audioprobe rtaudio_static ${LINKLIBS})
8
9 add_executable(playsaw playsaw.cpp)
10 target_link_libraries(playsaw rtaudio_static ${LINKLIBS})
11
12 add_executable(playraw playraw.cpp)
13 target_link_libraries(playraw rtaudio_static ${LINKLIBS})
14
15 add_executable(record record.cpp)
16 target_link_libraries(record rtaudio_static ${LINKLIBS})
17
18 add_executable(duplex duplex.cpp)
19 target_link_libraries(duplex rtaudio_static ${LINKLIBS})
20
21 add_executable(testall testall.cpp)
22 target_link_libraries(testall rtaudio_static ${LINKLIBS})
23
24 add_executable(teststops teststops.cpp)
25 target_link_libraries(teststops rtaudio_static ${LINKLIBS})