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