summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKjell Ahlstedt <kjellahlstedt@gmail.com>2019-12-30 15:53:49 +0100
committerKjell Ahlstedt <kjellahlstedt@gmail.com>2019-12-30 15:53:49 +0100
commit1758d4fcfcb0e95be0756c4e091de06d9753397c (patch)
tree8f0352ecdf6a65e0eaf094830faf866c2beddba6
parentcfe2401fca5f778fad433d96bc3f09e96ddf417d (diff)
downloadsigc++-1758d4fcfcb0e95be0756c4e091de06d9753397c.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 8fab891..d4d778a 100644
--- a/meson.build
+++ b/meson.build
@@ -1,6 +1,6 @@
# This file is part of libsigc++.
-project('sigc++', 'cpp',
+project('libsigc++', 'cpp',
version: '2.10.2',
license: 'LGPLv2.1+',
default_options: [
@@ -11,7 +11,7 @@ project('sigc++', 'cpp',
)
sigcxx_api_version = '2.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()