reactos/base/shell/explorer/notifyhook/CMakeLists.txt
Sylvain Petreolle fcc4413386 [CMAKE]
Add explorer to build.
Not enabled now, it links but executable is not valid.

svn path=/branches/cmake-bringup/; revision=48887
2010-09-25 19:17:39 +00:00

10 lines
271 B
CMake

add_definitions(-D_NOTIFYHOOK_IMPL)
add_library(notifyhook SHARED notifyhook.c ${CMAKE_CURRENT_SOURCE_DIR}/notifyhook.rc)
set_module_type(notifyhook win32dll)
target_link_libraries(notifyhook
${CMAKE_CURRENT_SOURCE_DIR}/notifyhook.def
-lkernel32
-luser32)