build: disable msvc 'function not inlined' warning

This commit is contained in:
Bert Belder 2017-09-10 18:49:27 +02:00
parent 0534ee9077
commit 8a09e0dbe0

View File

@ -8,7 +8,7 @@ if(WIN32)
endif()
if(MSVC)
add_compile_options(/Wall /wd4201 /wd4242 /wd4711 /wd4820)
add_compile_options(/Wall /wd4201 /wd4242 /wd4710 /wd4711 /wd4820)
else()
add_compile_options(-Wall)
endif()