reactos/dll/win32/wlnotify/CMakeLists.txt

19 lines
449 B
CMake
Raw Normal View History

spec2def(wlnotify.dll wlnotify.spec ADD_IMPORTLIB)
list(APPEND SOURCE
schedsvc.c
test.c
wlnotify.c
precomp.h)
add_library(wlnotify SHARED
${SOURCE}
wlnotify.rc
${CMAKE_CURRENT_BINARY_DIR}/wlnotify.def)
set_module_type(wlnotify win32dll UNICODE ENTRYPOINT DllMain 12)
add_importlibs(wlnotify advapi32 kernel32 ntdll)
add_pch(wlnotify precomp.h SOURCE)
add_cd_file(TARGET wlnotify DESTINATION reactos/system32 FOR all)