2013-04-18 21:46:58 +00:00
|
|
|
|
2016-04-20 12:36:25 +00:00
|
|
|
include_directories(${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine)
|
2013-04-18 21:46:58 +00:00
|
|
|
add_definitions(-D__WINESRC__)
|
|
|
|
spec2def(ieframe.dll ieframe.spec ADD_IMPORTLIB)
|
|
|
|
|
|
|
|
list(APPEND SOURCE
|
|
|
|
classinfo.c
|
|
|
|
client.c
|
|
|
|
dochost.c
|
|
|
|
events.c
|
|
|
|
frame.c
|
|
|
|
ie.c
|
|
|
|
ieframe_main.c
|
|
|
|
iehtmlwnd.c
|
|
|
|
iexplore.c
|
|
|
|
intshcut.c
|
|
|
|
navigate.c
|
|
|
|
oleobject.c
|
|
|
|
persist.c
|
|
|
|
shellbrowser.c
|
|
|
|
shelluihelper.c
|
|
|
|
urlhist.c
|
|
|
|
view.c
|
|
|
|
webbrowser.c
|
2018-03-15 11:26:26 +00:00
|
|
|
precomp.h
|
2014-02-10 12:19:56 +00:00
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/ieframe_stubs.c)
|
2013-04-18 21:46:58 +00:00
|
|
|
|
2019-03-20 13:19:48 +00:00
|
|
|
add_library(ieframe MODULE
|
2014-02-10 12:19:56 +00:00
|
|
|
${SOURCE}
|
|
|
|
ieframe.rc
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/ieframe.def)
|
2013-04-18 21:46:58 +00:00
|
|
|
|
|
|
|
add_typelib(ieframe_v1.idl)
|
2013-04-23 16:05:31 +00:00
|
|
|
|
|
|
|
list(APPEND ieframe_rc_deps
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/ieframe.rgs
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/ieframe_v1.rgs
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/ieframe_v1.tlb)
|
|
|
|
|
|
|
|
set_source_files_properties(ieframe.rc PROPERTIES OBJECT_DEPENDS "${ieframe_rc_deps}")
|
2013-04-22 15:21:38 +00:00
|
|
|
add_dependencies(ieframe stdole2)
|
2013-04-18 21:46:58 +00:00
|
|
|
set_module_type(ieframe win32dll)
|
|
|
|
target_link_libraries(ieframe uuid wine)
|
|
|
|
add_importlibs(ieframe urlmon shell32 comctl32 shlwapi oleaut32 ole32 user32 gdi32 advapi32 msvcrt kernel32 ntdll)
|
2018-03-15 11:26:26 +00:00
|
|
|
add_pch(ieframe precomp.h SOURCE)
|
2013-04-18 21:46:58 +00:00
|
|
|
add_cd_file(TARGET ieframe DESTINATION reactos/system32 FOR all)
|