mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 21:34:00 +00:00
18 lines
449 B
CMake
18 lines
449 B
CMake
|
|
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)
|