reactos/dll/win32/itss/CMakeLists.txt
Hermès Bélusca-Maïto b819608ed8 Create a branch for console restructuration work.
svn path=/branches/condrv_restructure/; revision=63104
2014-05-02 14:13:40 +00:00

28 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)