mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-26 19:33:31 +00:00
- [PSDK] Introduce our own Microsoft compatible and MIT-licensed shlwapi.h and fix breaking changes - [INCLUDE/WINE] Import shlwapi.h from wine-10.0 for use with Wine compatible code - [CMAKELISTS.TXT] Bump up IE version from IE60 to IE60SP2. This is required because we are already using IE60SP2 guarded functionality; the new header unhides this. - [SHLWAPI] Fix breaking changes, including a typo for 'SHGVSPB_GLOBALDEAFAULTS' (should be 'SHGVSPB_GLOBALDEFAULTS') - [MSI] Use wine's shlwapi.h instead of our own in automation.c, don't precompile shlwapi.h. - [URLMON_WINETEST] Primarily use wineheaders for this test
21 lines
534 B
CMake
21 lines
534 B
CMake
|
|
include_directories(BEFORE ${REACTOS_SOURCE_DIR}/sdk/include/wine)
|
|
add_definitions(-D__ROS_LONG64__)
|
|
add_definitions(-DUSE_WINE_TODOS)
|
|
|
|
list(APPEND SOURCE
|
|
generated.c
|
|
misc.c
|
|
protocol.c
|
|
sec_mgr.c
|
|
stream.c
|
|
uri.c
|
|
url.c
|
|
testlist.c)
|
|
|
|
add_executable(urlmon_winetest ${SOURCE})
|
|
target_link_libraries(urlmon_winetest uuid)
|
|
set_module_type(urlmon_winetest win32cui)
|
|
add_importlibs(urlmon_winetest urlmon wininet ole32 oleaut32 shlwapi user32 advapi32 msvcrt kernel32)
|
|
add_rostests_file(TARGET urlmon_winetest)
|