1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2025-02-21 13:54:18 +01:00

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.
This commit is contained in:
Neal Gompa 2025-02-10 09:46:51 -05:00 committed by Philip Rebohle
parent 3aeedb9c98
commit 4d3b35ae53

View File

@ -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()