* Sync up to trunk HEAD (r62285). Branch guys deserve the significant speedups too ;)
[reactos.git] / dll / win32 / itss / CMakeLists.txt
1
2 add_definitions(-D__WINESRC__)
3 include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
4
5 spec2def(itss.dll itss.spec)
6
7 list(APPEND SOURCE
8 chm_lib.c
9 lzx.c
10 itss.c
11 moniker.c
12 protocol.c
13 storage.c
14 precomp.h
15 ${CMAKE_CURRENT_BINARY_DIR}/itss_stubs.c)
16
17 add_library(itss SHARED
18 ${SOURCE}
19 guid.c
20 rsrc.rc
21 ${CMAKE_CURRENT_BINARY_DIR}/itss.def)
22
23 set_module_type(itss win32dll)
24 target_link_libraries(itss uuid wine)
25 add_importlibs(itss urlmon shlwapi ole32 msvcrt kernel32 ntdll)
26 add_pch(itss precomp.h SOURCE)
27 add_cd_file(TARGET itss DESTINATION reactos/system32 FOR all)