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

[general] Defining c++17 in project file directly, rather than as a compiler argument

This commit is contained in:
Philip Rebohle 2017-12-12 13:06:09 +01:00
parent 0f26d1c627
commit 1f4d7ae747
3 changed files with 3 additions and 3 deletions

View File

@ -9,7 +9,7 @@ exe_wrapper = 'wine'
c_args = ['-Og', '-ggdb']
c_link_args = ['-static', '-static-libgcc']
cpp_args = ['-std=c++17', '-Og', '-gstabs']
cpp_args = ['-Og', '-gstabs']
cpp_link_args = ['-static', '-static-libgcc', '-static-libstdc++', '-Wl,--add-stdcall-alias']
[host_machine]

View File

@ -9,7 +9,7 @@ exe_wrapper = 'wine'
c_args = ['-Og', '-ggdb']
c_link_args = ['-static', '-static-libgcc']
cpp_args = ['-std=c++17', '-Og', '-gstabs']
cpp_args = ['-Og', '-gstabs']
cpp_link_args = ['-static', '-static-libgcc', '-static-libstdc++']
[host_machine]

View File

@ -1,4 +1,4 @@
project('dxvk', ['c', 'cpp'])
project('dxvk', ['c', 'cpp'], default_options : ['cpp_std=c++17'])
cpu_family = target_machine.cpu_family()