reactos/dll/win32/mshtml/CMakeLists.txt
Jared Smudde 76a73b4295 [MSHTA] Implement MSHTA.exe (#577) CORE-12813
Implement mshta.exe. It links directly to the function RunHTMLApplication in mshtml and passes the file name and other optional arguments along. While the function is unimplemented in mshtml, it's a start.

[MSHTML] Add ADD_IMPORTLIB to CMakeLists so mshta can link to mshtml.
[BOOTDATA] Add the association information for mshta.exe to the registry.
2018-06-05 17:17:00 +02:00

113 lines
2.3 KiB
CMake

remove_definitions(-D_WIN32_WINNT=0x502)
add_definitions(-D_WIN32_WINNT=0x600)
add_definitions(
-D__WINESRC__
-DCOM_NO_WINDOWS_H)
include_directories(${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine)
add_idl_headers(mshtml_nsiface_header nsiface.idl)
spec2def(mshtml.dll mshtml.spec ADD_IMPORTLIB)
list(APPEND SOURCE
conpoint.c
dispex.c
editor.c
hlink.c
htmlanchor.c
htmlarea.c
htmlattr.c
htmlbody.c
htmlcomment.c
htmlcurstyle.c
htmldoc.c
htmlelem.c
htmlelemcol.c
htmlembed.c
htmlevent.c
htmlform.c
htmlframe.c
htmlframebase.c
htmlgeneric.c
htmlhead.c
htmliframe.c
htmlimg.c
htmlinput.c
htmllink.c
htmllocation.c
htmlmeta.c
htmlnode.c
htmlobject.c
htmloption.c
htmlscreen.c
htmlscript.c
htmlselect.c
htmlstorage.c
htmlstyle.c
htmlstyle2.c
htmlstyle3.c
htmlstyleelem.c
htmlstylesheet.c
htmltable.c
htmltablecell.c
htmltablerow.c
htmltextarea.c
htmltextcont.c
htmltextnode.c
htmlwindow.c
ifacewrap.c
ipwindow.c
loadopts.c
main.c
mutation.c
navigate.c
npplugin.c
nsembed.c
nsevents.c
nsio.c
nsservice.c
olecmd.c
oleobj.c
olewnd.c
omnavigator.c
persist.c
pluginhost.c
propbag.c
protocol.c
script.c
secmgr.c
selection.c
service.c
task.c
txtrange.c
view.c
xmlhttprequest.c
mshtml_private.h)
if(MSVC)
add_asm_files(mshtml_asm msvc.S)
endif()
add_library(mshtml SHARED
${SOURCE}
${mshtml_asm}
guid.c
rsrc.rc
${CMAKE_CURRENT_BINARY_DIR}/mshtml_stubs.c
${CMAKE_CURRENT_BINARY_DIR}/mshtml.def)
list(APPEND mshtml_rc_deps
${CMAKE_CURRENT_SOURCE_DIR}/blank.htm
${CMAKE_CURRENT_SOURCE_DIR}/mshtml.inf
${CMAKE_CURRENT_SOURCE_DIR}/mshtml_classes.rgs)
set_source_files_properties(rsrc.rc PROPERTIES OBJECT_DEPENDS "${mshtml_rc_deps}")
set_module_type(mshtml win32dll)
target_link_libraries(mshtml uuid wine strmiids oldnames)
add_delay_importlibs(mshtml wininet)
add_importlibs(mshtml urlmon shlwapi shell32 ole32 oleaut32 user32 gdi32 advapi32 msvcrt kernel32 ntdll)
add_dependencies(mshtml mshtml_nsiface_header)
add_pch(mshtml mshtml_private.h SOURCE)
add_cd_file(TARGET mshtml DESTINATION reactos/system32 FOR all)