mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 13:25:57 +00:00
c0e495f046
* Addendum to r64795. * Also remove unneeded wine linking and ntdll importing. * Remove redundant defines. svn path=/trunk/; revision=64796
24 lines
577 B
CMake
24 lines
577 B
CMake
|
|
add_definitions(-DUSE_WINE_TODOS)
|
|
|
|
list(APPEND SOURCE
|
|
domdoc.c
|
|
httpreq.c
|
|
saxreader.c
|
|
schema.c
|
|
testlist.c
|
|
xmldoc.c
|
|
xmlparser.c
|
|
xmlview.c)
|
|
|
|
add_executable(msxml3_winetest ${SOURCE} rsrc.rc)
|
|
add_idl_headers(xmlparser_idlheader_test xmlparser.idl)
|
|
add_dependencies(msxml3_winetest xmlparser_idlheader_test)
|
|
set_module_type(msxml3_winetest win32cui)
|
|
add_importlibs(msxml3_winetest user32 ole32 oleaut32 msvcrt kernel32)
|
|
|
|
if(MSVC)
|
|
add_importlibs(msxml3_winetest ntdll)
|
|
endif()
|
|
|
|
add_cd_file(TARGET msxml3_winetest DESTINATION reactos/bin FOR all)
|