Synchronize with trunk's revision r57629.
[reactos.git] / dll / shellext / deskmon / CMakeLists.txt
1
2 set_rc_compiler()
3
4 spec2def(deskmon.dll deskmon.spec)
5
6 list(APPEND SOURCE
7 deskmon.c
8 shxiface.c
9 deskmon.rc
10 ${CMAKE_CURRENT_BINARY_DIR}/deskmon.def)
11
12 add_library(deskmon SHARED ${SOURCE})
13
14 set_module_type(deskmon win32dll UNICODE)
15
16 target_link_libraries(deskmon uuid)
17
18 add_importlibs(deskmon
19 user32
20 gdi32
21 comctl32
22 ole32
23 msvcrt
24 kernel32
25 ntdll)
26
27 add_pch(deskmon precomp.h)
28
29 add_cd_file(TARGET deskmon DESTINATION reactos/system32 FOR all)