1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2025-01-30 02:52:10 +01:00

[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

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')