mirror of
https://github.com/reactos/reactos.git
synced 2024-11-10 00:34:39 +00:00
31f99bf377
* Sync with Wine 1.7.17. CORE-8080 svn path=/trunk/; revision=62937
25 lines
589 B
CMake
25 lines
589 B
CMake
|
|
add_definitions(-DUSE_WINE_TODOS)
|
|
|
|
list(APPEND SOURCE
|
|
bitmap.c
|
|
bmpformat.c
|
|
converter.c
|
|
gifformat.c
|
|
icoformat.c
|
|
info.c
|
|
metadata.c
|
|
palette.c
|
|
pngformat.c
|
|
propertybag.c
|
|
stream.c
|
|
testlist.c
|
|
tiffformat.c)
|
|
|
|
add_executable(windowscodecs_winetest ${SOURCE})
|
|
set_module_type(windowscodecs_winetest win32cui)
|
|
add_importlibs(windowscodecs_winetest windowscodecs oleaut32 ole32 user32 gdi32 msvcrt kernel32)
|
|
if(MSVC)
|
|
add_importlibs(windowscodecs_winetest ntdll)
|
|
endif()
|
|
add_cd_file(TARGET windowscodecs_winetest DESTINATION reactos/bin FOR all)
|