[3RDPARTY] Make some warnings non-fatal

This commit is contained in:
Timo Kreuzer 2019-04-01 17:55:03 +02:00
parent c2e16abc91
commit 146096cd2e
14 changed files with 76 additions and 0 deletions

View file

@ -5,6 +5,14 @@ add_definitions(
-DUSE_WIN32_FILEIO
-DTIF_PLATFORM_CONSOLE)
if(MSVC)
# error C4311: 'type cast': pointer truncation from 'thandle_t' to 'int'
replace_compile_flags("/we4311" " ")
# error C4312: 'type cast': conversion from 'int' to 'thandle_t' of greater size
replace_compile_flags("/we4312" " ")
endif()
include_directories(
${REACTOS_SOURCE_DIR}/sdk/include/reactos/libs/libtiff
${REACTOS_SOURCE_DIR}/sdk/include/reactos/libs/zlib)

View file

@ -3,6 +3,11 @@ add_definitions(
-D__WINESRC__
-DDIRECT3D_VERSION=0x0900)
if(MSVC)
# error C4133: 'function': incompatible types - from 'D3D_CBUFFER_TYPE *' to 'DWORD *'
replace_compile_flags("/we4133" " ")
endif()
include_directories(${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine)
spec2def(d3dcompiler_43.dll d3dcompiler_43.spec ADD_IMPORTLIB)

View file

@ -7,6 +7,11 @@ add_definitions(
include_directories(BEFORE ${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine)
if(MSVC)
# error C4312: 'type cast': conversion from 'LONG' to 'void *' of greater size
replace_compile_flags("/we4312" " ")
endif()
# We name this d3dwine.dll, because the Virtualbox additions ship with a custom wined3d.dll
# and it breaks everything if it is installed.
spec2def(d3dwine.dll wined3d.spec ADD_IMPORTLIB)

View file

@ -3,6 +3,11 @@ add_definitions(-D__WINESRC__)
include_directories(${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine)
spec2def(clusapi.dll clusapi.spec)
if(MSVC)
# error C4312: 'type cast': conversion from 'unsigned int' to 'HCLUSTER' of greater size
replace_compile_flags("/we4312" " ")
endif()
list(APPEND SOURCE
clusapi.c
${CMAKE_CURRENT_BINARY_DIR}/clusapi_stubs.c

View file

@ -10,6 +10,11 @@ add_definitions(
include_directories(${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine)
spec2def(crypt32.dll crypt32.spec ADD_IMPORTLIB)
if(MSVC)
# error C4312: 'type cast': conversion from 'unsigned int' to 'void *' of greater size
replace_compile_flags("/we4312" " ")
endif()
list(APPEND SOURCE
base64.c
cert.c

View file

@ -10,6 +10,11 @@ include_directories(${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine)
add_idl_headers(mshtml_nsiface_header nsiface.idl)
spec2def(mshtml.dll mshtml.spec ADD_IMPORTLIB)
if(MSVC)
# error C4028: formal parameter 3 different from declaration
replace_compile_flags("/we4028" " ")
endif()
list(APPEND SOURCE
conpoint.c
dispex.c

View file

@ -7,6 +7,14 @@ add_definitions(-D__WINESRC__ -DMSIRUNMODE=MSIRUNMODE_T)
spec2def(msi.dll msi.spec ADD_IMPORTLIB)
generate_idl_iids(msiserver.idl)
if(MSVC)
# error C4133: 'function': incompatible types - from 'UINT *' to 'MSIINSTALLCONTEXT *'
replace_compile_flags("/we4133" " ")
# error C4312: 'type cast': conversion from 'unsigned int' to 'HANDLE' of greater size
replace_compile_flags("/we4312" " ")
endif()
list(APPEND SOURCE
action.c
alter.c

View file

@ -3,6 +3,11 @@ add_definitions(-D__WINESRC__)
include_directories(${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine)
spec2def(msrle32.dll msrle32.spec)
if(MSVC)
# error C4312: 'type cast': conversion from 'unsigned int' to 'LPVOID' of greater size
replace_compile_flags("/we4312" " ")
endif()
list(APPEND SOURCE
msrle32.c
${CMAKE_CURRENT_BINARY_DIR}/msrle32.def)

View file

@ -12,6 +12,11 @@ if(NOT MSVC)
add_compile_flags_language("-std=c++11" "CXX")
endif()
if(MSVC)
# error C4311: 'type cast': pointer truncation from 'HANDLE' to 'INT'
replace_compile_flags("/we4311" " ")
endif()
remove_definitions(-D_WIN32_WINNT=0x502)
add_definitions(-D_WIN32_WINNT=0x600)

View file

@ -8,6 +8,11 @@ add_definitions(
remove_definitions(-D_WIN32_WINNT=0x502)
add_definitions(-D_WIN32_WINNT=0x600)
if(MSVC)
# error C4133: 'function': incompatible types - from 'WICPixelFormatNumericRepresentation *' to 'DWORD *'
replace_compile_flags("/we4133" " ")
endif()
include_directories(
BEFORE ${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine
${REACTOS_SOURCE_DIR}/sdk/include/reactos/libs/libjpeg

View file

@ -3,6 +3,11 @@ add_definitions(-D_WINE)
include_directories(BEFORE ${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine)
spec2def(winmm.dll winmm.spec ADD_IMPORTLIB)
if(MSVC)
# error C4312: 'type cast': conversion from 'DWORD' to 'HTASK' of greater size
replace_compile_flags("/we4312" " ")
endif()
list(APPEND SOURCE
driver.c
joystick.c

View file

@ -1,6 +1,11 @@
spec2def(midimap.dll midimap.spec)
if(MSVC)
# error C4133: 'function': incompatible types - from 'LPDWORD' to 'DWORD_PTR *'
replace_compile_flags("/we4133" " ")
endif()
add_library(midimap MODULE
midimap.c
midimap.rc

View file

@ -1,6 +1,11 @@
add_definitions(-DUSE_WINE_TODOS)
if(MSVC)
# error C4133: 'function': incompatible types - from 'ImageFlags *' to 'UINT *'
replace_compile_flags("/we4133" " ")
endif()
list(APPEND SOURCE
brush.c
customlinecap.c

View file

@ -5,6 +5,11 @@ add_definitions(
include_directories(include)
if(MSVC)
# error C4312: 'type cast': conversion from 'unsigned long' to 'void *' of greater size
replace_compile_flags("/we4312" " ")
endif()
list(APPEND SOURCE
src/autofit/autofit.c
src/base/ftadvanc.c