1
2list(APPEND SOURCE
3    capture.c
4    ds3d8.c
5    ds3d.c
6    dsound8.c
7    dsound.c
8    duplex.c
9    propset.c)
10
11list(APPEND PCH_SKIP_SOURCE
12    testlist.c)
13
14add_executable(dsound_winetest
15    ${SOURCE}
16    ${PCH_SKIP_SOURCE})
17
18target_link_libraries(dsound_winetest uuid dxguid)
19set_module_type(dsound_winetest win32cui)
20add_importlibs(dsound_winetest ole32 user32 msvcrt kernel32)
21add_pch(dsound_winetest dsound_test.h "${PCH_SKIP_SOURCE}")
22add_rostests_file(TARGET dsound_winetest)
23