You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
633 B
26 lines
633 B
From 819a3e9cdda55aaeb062830cc91afeb6584f410a Mon Sep 17 00:00:00 2001
|
|
From: Khaled Hosny <khaled@aliftype.com>
|
|
Date: Tue, 28 Sep 2021 16:10:16 +0200
|
|
Subject: [PATCH] Pass version to meson library
|
|
|
|
Fixes https://github.com/HOST-Oman/libraqm/issues/136
|
|
---
|
|
src/meson.build | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/src/meson.build b/src/meson.build
|
|
index 40554b2..16ec18c 100644
|
|
--- a/src/meson.build
|
|
+++ b/src/meson.build
|
|
@@ -42,6 +42,7 @@ libraqm = library(
|
|
'raqm',
|
|
'raqm.c',
|
|
'raqm.h',
|
|
+ version : meson.project_version(),
|
|
dependencies : deps,
|
|
c_args : ['-DHAVE_CONFIG_H'],
|
|
install : true,
|
|
--
|
|
2.32.0
|
|
|