2011-05-16 13:12:07 +00:00
|
|
|
|
2011-06-13 15:31:11 +00:00
|
|
|
add_definitions(-D__WINESRC__)
|
2011-05-16 13:12:07 +00:00
|
|
|
include_directories(${REACTOS_SOURCE_DIR}/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
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/itss_stubs.c
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/itss.def)
|
|
|
|
|
2013-09-20 10:53:58 +00:00
|
|
|
add_library(itss SHARED ${SOURCE} rsrc.rc)
|
2011-05-16 13:12:07 +00:00
|
|
|
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)
|
2011-05-16 13:12:07 +00:00
|
|
|
add_cd_file(TARGET itss DESTINATION reactos/system32 FOR all)
|