[build] Specify C++ std manually in meson build

Meson doesn't specify this otherwise...
This commit is contained in:
Joshua Ashton 2020-03-18 03:47:55 +00:00
parent bf480ce659
commit 19842532c2
1 changed files with 4 additions and 0 deletions

View File

@ -13,6 +13,10 @@ else
dxvk_cpp_std='c++17'
endif
if dxvk_compiler.get_id() == 'msvc'
add_project_arguments('/std:' + dxvk_cpp_std, language : 'cpp')
endif
dxvk_include_path = include_directories('./include')
if (cpu_family == 'x86_64')