reactos/dll/win32/xolehlp/CMakeLists.txt
Hermès Bélusca-Maïto 95deef460b
[XOLEHLP] Import xolehlp.dll from Wine(-Staging) 3.21.
Should help improving the situation of the Microsoft SQL Server 2005
Express Edition installer. CORE-15399
2018-11-30 21:49:28 +01:00

16 lines
501 B
CMake

add_definitions(-D__WINESRC__)
include_directories(BEFORE ${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine)
spec2def(xolehlp.dll xolehlp.spec)
list(APPEND SOURCE
xolehlp.c
${CMAKE_CURRENT_BINARY_DIR}/xolehlp_stubs.c
${CMAKE_CURRENT_BINARY_DIR}/xolehlp.def)
add_library(xolehlp SHARED ${SOURCE})
set_module_type(xolehlp win32dll)
target_link_libraries(xolehlp adsiid uuid wine)
add_importlibs(xolehlp msvcrt kernel32 ntdll)
add_cd_file(TARGET xolehlp DESTINATION reactos/system32 FOR all)