reactos/dll/win32/hhctrl.ocx/CMakeLists.txt
Jérôme Gardou 23373acbb9 [CMAKE] Use modules instead of shared libraries
There is no need to compile our DLLs as shared libraries since we are
managing symbols exports and imports through spec files.

On my system, this reduces the configure-time by a factor of two.
2019-04-06 17:43:38 +02:00

39 lines
1 KiB
CMake

remove_definitions(-D_WIN32_WINNT=0x502)
add_definitions(-D_WIN32_WINNT=0x600)
add_definitions(-D__WINESRC__)
include_directories(${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine)
spec2def(hhctrl.ocx hhctrl.ocx.spec ADD_IMPORTLIB)
list(APPEND SOURCE
chm.c
content.c
help.c
hhctrl.c
index.c
search.c
stream.c
webbrowser.c
precomp.h)
add_library(hhctrl MODULE
${SOURCE}
guid.c
hhctrl.rc
${CMAKE_CURRENT_BINARY_DIR}/hhctrl.def)
add_typelib(hhctrl_tlb.idl)
list(APPEND hhctrl_rc_deps
${CMAKE_CURRENT_SOURCE_DIR}/hhctrl_tlb.rgs
${CMAKE_CURRENT_BINARY_DIR}/hhctrl_tlb.tlb)
set_source_files_properties(hhctrl.rc PROPERTIES OBJECT_DEPENDS "${hhctrl_rc_deps}")
set_module_type(hhctrl win32ocx)
target_link_libraries(hhctrl uuid wine)
add_importlibs(hhctrl advapi32 comctl32 shlwapi ole32 oleaut32 user32 gdi32 msvcrt kernel32 ntdll)
add_dependencies(hhctrl stdole2 wineheaders)
add_pch(hhctrl precomp.h SOURCE)
add_cd_file(TARGET hhctrl DESTINATION reactos/system32 FOR all)