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