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 metadata.c 12 palette.c 13 pngformat.c 14 propertybag.c 15 stream.c 16 tiffformat.c 17 precomp.h) 18 19add_executable(windowscodecs_winetest 20 ${SOURCE} 21 guid.c 22 testlist.c) 23 24set_module_type(windowscodecs_winetest win32cui) 25add_importlibs(windowscodecs_winetest windowscodecs oleaut32 ole32 propsys user32 gdi32 shlwapi msvcrt kernel32) 26 27if(MSVC) 28 add_importlibs(windowscodecs_winetest ntdll) 29endif() 30 31add_pch(windowscodecs_winetest precomp.h SOURCE) 32add_rostests_file(TARGET windowscodecs_winetest) 33