mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 21:09:15 +00:00
9ca7155a56
- Add a test for stack corruption when in window procedure call out. svn path=/trunk/; revision=51773
26 lines
596 B
CMake
26 lines
596 B
CMake
|
|
add_definitions(-D_DLL -D__USE_CRTIMP)
|
|
|
|
set_rc_compiler()
|
|
|
|
list(APPEND SOURCE
|
|
DeferWindowPos.c
|
|
GetIconInfo.c
|
|
GetKeyState.c
|
|
GetPeekMessage.c
|
|
GetSystemMetrics.c
|
|
InitializeLpkHooks.c
|
|
RealGetWindowClass.c
|
|
ScrollDC.c
|
|
ScrollWindowEx.c
|
|
SetCursorPos.c
|
|
WndProc.c
|
|
testlist.c
|
|
user32_apitest.rc)
|
|
|
|
add_executable(user32_apitest ${SOURCE})
|
|
target_link_libraries(user32_apitest wine)
|
|
set_module_type(user32_apitest win32cui)
|
|
add_importlibs(user32_apitest gdi32 user32 msvcrt kernel32 ntdll)
|
|
add_cd_file(TARGET user32_apitest DESTINATION reactos/bin FOR all)
|