mirror of
https://github.com/reactos/reactos.git
synced 2024-11-07 15:10:53 +00:00
41 lines
798 B
CMake
41 lines
798 B
CMake
|
|
remove_definitions(-DWINVER=0x502 -D_WIN32_WINNT=0x502)
|
|
add_definitions(-DWINVER=0x600 -D_WIN32_WINNT=0x600)
|
|
|
|
list(APPEND SOURCE
|
|
broadcast.c
|
|
class.c
|
|
clipboard.c
|
|
combo.c
|
|
cursoricon.c
|
|
dce.c
|
|
dde.c
|
|
dialog.c
|
|
edit.c
|
|
generated.c
|
|
input.c
|
|
listbox.c
|
|
menu.c
|
|
monitor.c
|
|
msg.c
|
|
resource.c
|
|
scroll.c
|
|
static.c
|
|
sysparams.c
|
|
text.c
|
|
uitools.c
|
|
win.c
|
|
winstation.c
|
|
wsprintf.c
|
|
precomp.h)
|
|
|
|
add_executable(user32_winetest
|
|
${SOURCE}
|
|
testlist.c
|
|
resource.rc)
|
|
|
|
add_pch(user32_winetest precomp.h SOURCE)
|
|
# some tests need to be run from an app compiled as GUI
|
|
set_module_type(user32_winetest win32gui)
|
|
add_importlibs(user32_winetest user32 gdi32 advapi32 msvcrt kernel32)
|
|
add_rostests_file(TARGET user32_winetest)
|