1
2add_definitions(
3    -DUSE_WINE_TODOS
4    -DWINETEST_USE_DBGSTR_LONGLONG)
5
6list(APPEND SOURCE
7    bitmap.c
8    bmpformat.c
9    converter.c
10    gifformat.c
11    icoformat.c
12    info.c
13    jpegformat.c
14    metadata.c
15    palette.c
16    pngformat.c
17    propertybag.c
18    stream.c
19    tiffformat.c
20    precomp.h)
21
22add_executable(windowscodecs_winetest
23    ${SOURCE}
24    guid.c
25    testlist.c)
26
27set_module_type(windowscodecs_winetest win32cui)
28add_importlibs(windowscodecs_winetest windowscodecs oleaut32 ole32 propsys user32 gdi32 shlwapi msvcrt kernel32)
29
30if(MSVC)
31    add_importlibs(windowscodecs_winetest ntdll)
32endif()
33
34add_pch(windowscodecs_winetest precomp.h SOURCE)
35add_rostests_file(TARGET windowscodecs_winetest)
36