mirror of
https://github.com/reactos/reactos.git
synced 2024-11-10 16:48:16 +00:00
ddb3d908c9
svn path=/branches/shell-experiments/; revision=62286
27 lines
615 B
CMake
27 lines
615 B
CMake
|
|
add_definitions(-D__WINESRC__)
|
|
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
|
|
|
spec2def(itss.dll itss.spec)
|
|
|
|
list(APPEND SOURCE
|
|
chm_lib.c
|
|
lzx.c
|
|
itss.c
|
|
moniker.c
|
|
protocol.c
|
|
storage.c
|
|
precomp.h
|
|
${CMAKE_CURRENT_BINARY_DIR}/itss_stubs.c)
|
|
|
|
add_library(itss SHARED
|
|
${SOURCE}
|
|
guid.c
|
|
rsrc.rc
|
|
${CMAKE_CURRENT_BINARY_DIR}/itss.def)
|
|
|
|
set_module_type(itss win32dll)
|
|
target_link_libraries(itss uuid wine)
|
|
add_importlibs(itss urlmon shlwapi ole32 msvcrt kernel32 ntdll)
|
|
add_pch(itss precomp.h SOURCE)
|
|
add_cd_file(TARGET itss DESTINATION reactos/system32 FOR all)
|