mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 17:05:46 +00:00
28 lines
544 B
CMake
28 lines
544 B
CMake
|
|
add_definitions(-DUSE_WINE_TODOS)
|
|
|
|
list(APPEND SOURCE
|
|
brush.c
|
|
customlinecap.c
|
|
font.c
|
|
graphics.c
|
|
graphicspath.c
|
|
image.c
|
|
matrix.c
|
|
metafile.c
|
|
pathiterator.c
|
|
pen.c
|
|
region.c
|
|
stringformat.c
|
|
precomp.h)
|
|
|
|
add_executable(gdiplus_winetest
|
|
${SOURCE}
|
|
guid.c
|
|
testlist.c
|
|
resource.rc)
|
|
|
|
set_module_type(gdiplus_winetest win32cui)
|
|
add_importlibs(gdiplus_winetest gdiplus user32 gdi32 ole32 msvcrt kernel32)
|
|
add_pch(gdiplus_winetest precomp.h SOURCE)
|
|
add_rostests_file(TARGET gdiplus_winetest)
|