2011-05-16 13:12:07 +00:00
|
|
|
|
2020-03-26 13:40:39 +00:00
|
|
|
add_definitions(-D__WINESRC__ -D__ROS_LONG64__)
|
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
|
2020-05-09 21:37:40 +00:00
|
|
|
storage.c)
|
|
|
|
|
|
|
|
list(APPEND PCH_SKIP_SOURCE
|
|
|
|
guid.c
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/itss_stubs.c)
|
2014-02-10 12:19:56 +00:00
|
|
|
|
2019-03-20 13:19:48 +00:00
|
|
|
add_library(itss MODULE
|
2014-02-10 12:19:56 +00:00
|
|
|
${SOURCE}
|
2020-05-09 21:37:40 +00:00
|
|
|
${PCH_SKIP_SOURCE}
|
2014-02-10 12:19:56 +00:00
|
|
|
rsrc.rc
|
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)
|
2020-05-09 21:37:40 +00:00
|
|
|
add_pch(itss precomp.h "${PCH_SKIP_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)
|