- Remove some unneeded pdef files.
[reactos.git] / dll / shellext / slayer / CMakeLists.txt
1
2 set_unicode()
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 ${CMAKE_CURRENT_BINARY_DIR}/slayer_precomp.h.gch ${SOURCE})
12
13 set_module_type(slayer win32dll)
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 ${CMAKE_CURRENT_SOURCE_DIR}/precomp.h ${SOURCE})
28
29 add_cab_target(slayer 1)