Sync with trunk (r49303)
[reactos.git] / dll / shellext / slayer / CMakeLists.txt
1
2 set_unicode()
3
4 spec2def(slayer ${CMAKE_CURRENT_SOURCE_DIR}/slayer.spec ${CMAKE_CURRENT_BINARY_DIR}/slayer.def)
5
6 list(APPEND SOURCE slayer.c slayer.rc)
7
8 add_library(slayer SHARED ${CMAKE_CURRENT_BINARY_DIR}/slayer_precomp.h.gch ${SOURCE})
9
10 set_module_type(slayer win32dll)
11
12 target_link_libraries(slayer ${CMAKE_CURRENT_BINARY_DIR}/slayer.def uuid)
13
14 add_importlibs(slayer
15 user32
16 comctl32
17 advapi32
18 ole32
19 shell32
20 kernel32
21 ntdll)
22
23 add_pch(slayer ${CMAKE_CURRENT_SOURCE_DIR}/precomp.h ${SOURCE})
24 add_dependencies(slayer slayer_def)
25 add_livecd_target(slayer reactos/system32)