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)
|
|
|
|
|
|
|
|
set_rc_compiler()
|
|
|
|
|
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
|
|
|
|
rsrc.rc
|
|
|
|
#${REACTOS_BINARY_DIR}/include/reactos/wine/itss_i.c
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/itss_stubs.c
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/itss.def)
|
|
|
|
|
|
|
|
add_library(itss SHARED ${SOURCE})
|
|
|
|
|
|
|
|
set_module_type(itss win32dll)
|
|
|
|
target_link_libraries(itss uuid wine)
|
2011-06-20 13:30:40 +00:00
|
|
|
if(MSVC)
|
|
|
|
target_link_libraries(itss itss_guid)
|
2011-09-04 17:32:30 +00:00
|
|
|
else()
|
|
|
|
allow_warnings(itss)
|
2011-06-20 13:30:40 +00:00
|
|
|
endif()
|
2011-05-16 13:12:07 +00:00
|
|
|
|
|
|
|
add_importlibs(itss
|
|
|
|
urlmon
|
|
|
|
shlwapi
|
|
|
|
ole32
|
|
|
|
msvcrt
|
|
|
|
kernel32
|
|
|
|
ntdll)
|
|
|
|
|
|
|
|
add_dependencies(itss wineheaders)
|
|
|
|
add_cd_file(TARGET itss DESTINATION reactos/system32 FOR all)
|