Specify c++ 11 flag as code uses c++ 11 features

This commit is contained in:
Peter Hull 2023-04-23 08:46:25 +01:00 committed by Jussi Pakkanen
parent 38b35eca30
commit 1fdcc30ae6
1 changed files with 2 additions and 1 deletions

View File

@ -54,7 +54,8 @@ test('runtest-both-2', exe_both2)
# both_libraries the static has no sources and thus no compilers, resulting in
# the executable linking using the C compiler.
# https://github.com/Netflix/vmaf/issues/1107
libccpp = both_libraries('ccpp', 'foo.cpp', 'libfile.c')
libccpp = both_libraries('ccpp', 'foo.cpp', 'libfile.c',
cpp_args : ['-std=c++11'])
exe = executable('prog-ccpp', 'main2.c',
link_with: libccpp.get_static_lib(),
c_args : ['-DSTATIC_COMPILATION'],