* Sync up to trunk head (r65270).
[reactos.git] / dll / shellext / deskmon / CMakeLists.txt
1
2 spec2def(deskmon.dll deskmon.spec)
3
4 list(APPEND SOURCE
5 deskmon.c
6 shxiface.c
7 precomp.h)
8
9 add_library(deskmon SHARED
10 ${SOURCE}
11 deskmon.rc
12 ${CMAKE_CURRENT_BINARY_DIR}/deskmon.def)
13
14 set_module_type(deskmon win32dll UNICODE)
15 target_link_libraries(deskmon uuid)
16 add_importlibs(deskmon user32 gdi32 comctl32 ole32 msvcrt kernel32 ntdll)
17 add_pch(deskmon precomp.h SOURCE)
18 add_cd_file(TARGET deskmon DESTINATION reactos/system32 FOR all)