Sync with trunk rev.61910 to get latest improvements and bugfixes.
[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 guid.c
15 ${CMAKE_CURRENT_BINARY_DIR}/itss_stubs.c
16 ${CMAKE_CURRENT_BINARY_DIR}/itss.def)
17
18 add_library(itss SHARED ${SOURCE} rsrc.rc)
19 set_module_type(itss win32dll)
20 target_link_libraries(itss uuid wine)
21 add_importlibs(itss urlmon shlwapi ole32 msvcrt kernel32 ntdll)
22 add_cd_file(TARGET itss DESTINATION reactos/system32 FOR all)