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