Once more, try to calm compiler output with -DCMAKE_CXX_FLAGS=-Wno-deprecated

This commit is contained in:
clanmills 2020-05-19 22:53:44 +01:00
parent d2d73a70e8
commit cb28f833e4

View File

@ -40,7 +40,7 @@ def matrix_build(shared_libs, ccs, build_types, cmake_bin, cmake_options,
)
os.mkdir(cwd)
cmake = "{cmake_bin} {!s} -DCMAKE_BUILD_TYPE={build_type} " \
cmake = "{cmake_bin} {!s} -DCMAKE_BUILD_TYPE={build_type} -DCMAKE_CXX_FLAGS=-Wno-deprecated " \
"-DBUILD_SHARED_LIBS={lib_type} -DEXIV2_BUILD_UNIT_TESTS={tests} "\
"../..".format(
cmake_options, cmake_bin=cmake_bin, build_type=build_type,