2011-05-16 13:12:07 +00:00
|
|
|
|
2011-06-13 15:31:11 +00:00
|
|
|
add_definitions(-D__WINESRC__)
|
2016-04-20 12:36:25 +00:00
|
|
|
include_directories(${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine)
|
2011-06-26 21:29:55 +00:00
|
|
|
spec2def(itss.dll itss.spec)
|
2011-05-16 13:12:07 +00:00
|
|
|
|
|
|
|
list(APPEND SOURCE
|
|
|
|
chm_lib.c
|
|
|
|
lzx.c
|
|
|
|
itss.c
|
|
|
|
moniker.c
|
|
|
|
protocol.c
|
|
|
|
storage.c
|
2017-12-09 22:21:04 +00:00
|
|
|
precomp.h)
|
2014-02-10 12:19:56 +00:00
|
|
|
|
|
|
|
add_library(itss SHARED
|
|
|
|
${SOURCE}
|
2013-12-25 14:53:25 +00:00
|
|
|
guid.c
|
2014-02-10 12:19:56 +00:00
|
|
|
rsrc.rc
|
2017-12-09 22:21:04 +00:00
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/itss_stubs.c
|
2011-05-16 13:12:07 +00:00
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/itss.def)
|
|
|
|
|
|
|
|
set_module_type(itss win32dll)
|
|
|
|
target_link_libraries(itss uuid wine)
|
2013-09-20 10:53:58 +00:00
|
|
|
add_importlibs(itss urlmon shlwapi ole32 msvcrt kernel32 ntdll)
|
2014-02-10 12:19:56 +00:00
|
|
|
add_pch(itss precomp.h SOURCE)
|
2014-10-01 11:07:06 +00:00
|
|
|
add_dependencies(itss wineheaders)
|
2011-05-16 13:12:07 +00:00
|
|
|
add_cd_file(TARGET itss DESTINATION reactos/system32 FOR all)
|