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
|
|
|
|
#${REACTOS_BINARY_DIR}/include/reactos/wine/itss_i.c
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/itss_stubs.c
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/itss.def)
|
|
|
|
|
2012-03-12 12:39:51 +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)
|
2012-08-01 23:25:06 +00:00
|
|
|
|
|
|
|
if(NOT MSVC)
|
2012-03-12 12:39:51 +00:00
|
|
|
# FIXME: http://www.cmake.org/Bug/view.php?id=12998
|
|
|
|
#allow_warnings(itss)
|
|
|
|
set_source_files_properties(${SOURCE} PROPERTIES COMPILE_FLAGS "-Wno-error")
|
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)
|