From 9f731588db161c318af740472bf5d2abde8a7538 Mon Sep 17 00:00:00 2001 From: Kjell Ahlstedt Date: Mon, 30 Dec 2019 15:46:23 +0100 Subject: 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. --- meson.build | 4 ++-- 1 file 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() -- cgit v1.2.1