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