2010-12-07 11:40:10 +00:00
|
|
|
|
2014-02-14 23:20:54 +00:00
|
|
|
add_definitions(-DUSE_WINE_TODOS)
|
2013-05-19 21:22:21 +00:00
|
|
|
add_idl_Headers(test_tlb_header test_tlb.idl)
|
|
|
|
add_typelib(test_tlb.idl)
|
|
|
|
|
2010-12-07 11:40:10 +00:00
|
|
|
list(APPEND SOURCE
|
2013-05-19 21:22:21 +00:00
|
|
|
activex.c
|
2010-12-07 11:40:10 +00:00
|
|
|
dom.c
|
|
|
|
events.c
|
|
|
|
htmldoc.c
|
|
|
|
htmllocation.c
|
|
|
|
misc.c
|
|
|
|
protocol.c
|
|
|
|
script.c
|
2013-05-19 21:22:21 +00:00
|
|
|
style.c
|
|
|
|
testlist.c)
|
|
|
|
|
|
|
|
add_executable(mshtml_winetest ${SOURCE} rsrc.rc)
|
|
|
|
|
|
|
|
list(APPEND mshtml_winetest_rc_deps
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/test_tlb.tlb
|
2014-04-26 18:34:51 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/blank.html
|
2013-05-19 21:22:21 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/exectest.html
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/jstest.html
|
2014-04-26 18:34:51 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/nav_test.html
|
2013-05-19 21:22:21 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/vbtest.html
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/events.html
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/externscr.js)
|
|
|
|
|
|
|
|
set_source_files_properties(rsrc.rc PROPERTIES OBJECT_DEPENDS "${mshtml_winetest_rc_deps}")
|
2014-04-26 18:34:51 +00:00
|
|
|
target_link_libraries(mshtml_winetest uuid strmiids)
|
2010-12-07 11:40:10 +00:00
|
|
|
set_module_type(mshtml_winetest win32cui)
|
2014-04-26 18:34:51 +00:00
|
|
|
add_importlibs(mshtml_winetest wininet ole32 oleaut32 user32 gdi32 urlmon advapi32 msvcrt kernel32)
|
2013-05-19 21:22:21 +00:00
|
|
|
add_dependencies(mshtml_winetest test_tlb_header stdole2)
|
2011-05-14 20:55:36 +00:00
|
|
|
add_cd_file(TARGET mshtml_winetest DESTINATION reactos/bin FOR all)
|