Use cpp_args and not c_args, since this is a C++ project.

This commit is contained in:
Jacob 2024-07-23 00:55:15 +02:00
parent f59b980427
commit 2ba39e5a6e

View file

@ -17,7 +17,7 @@ project_target = executable(
meson.project_name(),
project_source_files, install : true,
dependencies: project_dependencies,
c_args : build_args,
cpp_args : build_args,
)
test(meson.project_name(), project_target)