reactos/rostests/win32/kernel32/notificationtest/CMakeLists.txt
Pierre Schweitzer 12268a1b66 [ROSTESTS]
Add notifications test application.
It is: http://msdn.microsoft.com/en-us/library/windows/desktop/aa365261%28v=vs.85%29.aspx
It properly works in ReactOS since r62446

CORE-2582

svn path=/trunk/; revision=62581
2014-03-29 21:12:17 +00:00

10 lines
333 B
CMake

list(APPEND SOURCE
notificationtest.c)
add_executable(notificationtest ${SOURCE})
target_link_libraries(notificationtest wine ${PSEH_LIB})
set_module_type(notificationtest win32cui)
add_importlibs(notificationtest gdi32 user32 shlwapi msvcrt kernel32 ntdll)
add_cd_file(TARGET notificationtest DESTINATION reactos/bin FOR all)