[URLMON] Convert urlmon.inf to utf8 since git insists on fucking up utf16 files.

This commit is contained in:
Mark Jansen 2017-10-07 23:43:57 +02:00
parent 66c2299bfe
commit 48fe08654d
3 changed files with 11 additions and 1 deletions

View file

@ -11,6 +11,16 @@ include_directories(${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine)
spec2def(urlmon.dll urlmon.spec ADD_IMPORTLIB)
add_rpcproxy_files(urlmon_urlmon.idl)
set(_source_file ${CMAKE_CURRENT_SOURCE_DIR}/urlmon.inf)
set(_converted_file ${CMAKE_CURRENT_BINARY_DIR}/urlmon_utf16.inf)
add_custom_command(
OUTPUT "${_converted_file}"
COMMAND native-utf16le "${_source_file}" "${_converted_file}"
DEPENDS native-utf16le "${_source_file}")
set_source_files_properties(${_converted_file} PROPERTIES GENERATED TRUE)
set_source_files_properties(urlmon.rc PROPERTIES OBJECT_DEPENDS "${_converted_file}")
list(APPEND SOURCE
axinstall.c
bindctx.c

Binary file not shown.

View file

@ -55,7 +55,7 @@ LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
2 WINE_REGISTRY "urlmon_urlmon.rgs"
/* @makedep: urlmon.inf */
REGINST REGINST urlmon.inf
REGINST REGINST urlmon_utf16.inf
#define WINE_FILENAME_STR "urlmon.dll"
#define WINE_FILEVERSION 6,0,2800,1485