mirror of
https://gitlab.freedesktop.org/emersion/libliftoff.git
synced 2025-01-30 20:34:19 +01:00
build: fix library version
Fixes the following error: ../meson.build:31:0: ERROR: Invalid Shared library version "0.3.0-dev". Must be of the form X.Y.Z where all three are numbers. Y and Z are optional.
This commit is contained in:
parent
8a95d52890
commit
4a42a1a6a9
1 changed files with 1 additions and 1 deletions
|
@ -40,7 +40,7 @@ liftoff_lib = library(
|
|||
'plane.c',
|
||||
),
|
||||
include_directories: liftoff_inc,
|
||||
version: meson.project_version(),
|
||||
version: meson.project_version().split('-')[0],
|
||||
dependencies: liftoff_deps,
|
||||
install: true,
|
||||
)
|
||||
|
|
Loading…
Add table
Reference in a new issue