mirror of
https://github.com/reactos/reactos.git
synced 2024-10-30 11:35:58 +00:00
5177b0a967
- Patch by Thomas Faber: Tests for new DeferWindowPos implementation. See bug 6025. svn path=/trunk/; revision=51100
21 lines
492 B
CMake
21 lines
492 B
CMake
|
|
add_definitions(-D_DLL -D__USE_CRTIMP)
|
|
|
|
list(APPEND SOURCE
|
|
InitializeLpkHooks.c
|
|
RealGetWindowClass.c
|
|
ScrollDC.c
|
|
ScrollWindowEx.c
|
|
GetSystemMetrics.c
|
|
GetIconInfo.c
|
|
GetPeekMessage.c
|
|
DeferWindowPos.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_cab_target(user32_apitest 7)
|