summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKjell Ahlstedt <kjellahlstedt@gmail.com>2019-12-30 15:46:23 +0100
committerKjell Ahlstedt <kjellahlstedt@gmail.com>2019-12-30 15:46:23 +0100
commit9f731588db161c318af740472bf5d2abde8a7538 (patch)
tree91fbd65a90523d0f13f7a6ab7c32e965e6681b0f
parent962db2c90565f79e91a202abb3c6149edd97e756 (diff)
downloadsigc++-9f731588db161c318af740472bf5d2abde8a7538.tar.gz
meson.build: Change project name, sigc++ -> libsigc++
Autotools make tarballs called libsigc++-x.y.z.tar.xz. No reason to change that. The leading "lib" is now also restored in some locations in the reference documentation.
-rw-r--r--meson.build4
1 files changed, 2 insertions, 2 deletions
diff --git a/meson.build b/meson.build
index cd941da..4482e28 100644
--- a/meson.build
+++ b/meson.build
@@ -1,6 +1,6 @@
# This file is part of libsigc++.
-project('sigc++', 'cpp',
+project('libsigc++', 'cpp',
version: '3.0.1',
license: 'LGPLv2.1+',
default_options: [
@@ -11,7 +11,7 @@ project('sigc++', 'cpp',
)
sigcxx_api_version = '3.0'
-sigcxx_pcname = meson.project_name() + '-' + sigcxx_api_version
+sigcxx_pcname = 'sigc++-' + sigcxx_api_version
sigcxx_version_array = meson.project_version().split('.')
sigcxx_major_version = sigcxx_version_array[0].to_int()