mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 13:52:30 +00:00
c0e495f046
* Addendum to r64795. * Also remove unneeded wine linking and ntdll importing. * Remove redundant defines. svn path=/trunk/; revision=64796
27 lines
591 B
CMake
27 lines
591 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)
|