2010-10-28 11:33:02 +00:00
|
|
|
|
|
|
|
add_definitions(-D__WINESRC__)
|
|
|
|
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
|
|
|
|
2010-10-30 17:05:21 +00:00
|
|
|
spec2def(hhctrl.ocx hhctrl.ocx.spec)
|
2010-10-28 11:33:02 +00:00
|
|
|
|
|
|
|
add_library(hhctrl SHARED
|
|
|
|
chm.c
|
|
|
|
content.c
|
|
|
|
help.c
|
|
|
|
hhctrl.c
|
|
|
|
index.c
|
|
|
|
regsvr.c
|
|
|
|
search.c
|
|
|
|
stream.c
|
|
|
|
webbrowser.c
|
2010-10-30 17:05:21 +00:00
|
|
|
hhctrl.rc
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/hhctrl.def)
|
2010-10-28 11:33:02 +00:00
|
|
|
|
|
|
|
set_module_type(hhctrl win32ocx)
|
|
|
|
|
|
|
|
target_link_libraries(hhctrl
|
|
|
|
uuid
|
|
|
|
wine)
|
|
|
|
|
|
|
|
add_importlibs(hhctrl
|
|
|
|
advapi32
|
|
|
|
comctl32
|
|
|
|
shlwapi
|
|
|
|
ole32
|
|
|
|
oleaut32
|
|
|
|
user32
|
|
|
|
gdi32
|
|
|
|
kernel32
|
|
|
|
ntdll)
|
|
|
|
|
2010-10-30 16:08:19 +00:00
|
|
|
|