2010-12-07 09:27:10 +00:00
|
|
|
|
2014-02-14 17:16:54 +00:00
|
|
|
add_definitions(-DUSE_WINE_TODOS)
|
2010-12-07 09:27:10 +00:00
|
|
|
|
2019-04-01 15:55:03 +00:00
|
|
|
if(MSVC)
|
|
|
|
# error C4133: 'function': incompatible types - from 'ImageFlags *' to 'UINT *'
|
|
|
|
replace_compile_flags("/we4133" " ")
|
|
|
|
endif()
|
|
|
|
|
2010-12-07 09:27:10 +00:00
|
|
|
list(APPEND SOURCE
|
|
|
|
brush.c
|
|
|
|
customlinecap.c
|
|
|
|
font.c
|
|
|
|
graphics.c
|
|
|
|
graphicspath.c
|
|
|
|
image.c
|
|
|
|
matrix.c
|
2012-05-19 10:03:49 +00:00
|
|
|
metafile.c
|
2010-12-07 09:27:10 +00:00
|
|
|
pathiterator.c
|
|
|
|
pen.c
|
|
|
|
region.c
|
|
|
|
stringformat.c
|
2017-12-17 12:14:57 +00:00
|
|
|
precomp.h)
|
|
|
|
|
|
|
|
add_executable(gdiplus_winetest
|
|
|
|
${SOURCE}
|
|
|
|
guid.c
|
2018-01-18 23:20:03 +00:00
|
|
|
testlist.c
|
|
|
|
resource.rc)
|
2010-12-07 09:27:10 +00:00
|
|
|
|
|
|
|
set_module_type(gdiplus_winetest win32cui)
|
2013-09-19 15:10:36 +00:00
|
|
|
add_importlibs(gdiplus_winetest gdiplus user32 gdi32 ole32 msvcrt kernel32)
|
2017-12-17 12:14:57 +00:00
|
|
|
add_pch(gdiplus_winetest precomp.h SOURCE)
|
2017-01-13 09:24:15 +00:00
|
|
|
add_rostests_file(TARGET gdiplus_winetest)
|