build: Omit v prefix from the version number

It's conventional for version numbers to start with a digit. This isn't
important yet, but will become significant when generating pkg-config
metadata that can be queried for a sufficient version number.

Signed-off-by: Simon McVittie <smcv@collabora.com>
This commit is contained in:
Simon McVittie 2023-03-31 15:24:49 +01:00 committed by Ethan Lee
parent d04c705ef9
commit 99b47b5548
1 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,4 @@
project('dxvk', ['c', 'cpp'], version : 'v2.3.1', meson_version : '>= 0.58', default_options : [ 'cpp_std=c++17', 'warning_level=2' ])
project('dxvk', ['c', 'cpp'], version : '2.3.1', meson_version : '>= 0.58', default_options : [ 'cpp_std=c++17', 'warning_level=2' ])
cpu_family = target_machine.cpu_family()
platform = target_machine.system()