From e3df5d50181948efff3514775272eb87a007cd0a Mon Sep 17 00:00:00 2001 From: Neal Gompa Date: Mon, 10 Feb 2025 09:46:51 -0500 Subject: [PATCH] meson: Fix version construct by dropping the "v" prefix The "v" prefix was causing the version to be incorrectly set for generated files (such as pc files for pkg-config). Dropping the prefix fixes the issue. --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 9d352e1ca..6119b618c 100644 --- a/meson.build +++ b/meson.build @@ -1,4 +1,4 @@ -project('dxvk', ['c', 'cpp'], version : 'v2.5.3', meson_version : '>= 0.58', default_options : [ 'cpp_std=c++17', 'b_vscrt=static_from_buildtype', 'warning_level=2' ]) +project('dxvk', ['c', 'cpp'], version : '2.5.3', meson_version : '>= 0.58', default_options : [ 'cpp_std=c++17', 'b_vscrt=static_from_buildtype', 'warning_level=2' ]) pkg = import('pkgconfig') cpu_family = target_machine.cpu_family()