summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKjell Ahlstedt <kjellahlstedt@gmail.com>2019-12-29 19:00:33 +0100
committerKjell Ahlstedt <kjellahlstedt@gmail.com>2019-12-29 19:00:33 +0100
commitc57a2baab6ffd69dd1b27e52303d0777b75aec29 (patch)
tree2da86fc8e2b31b7f3b2ca00139a229f61045f7dc
parent76b0fe923a189c89528d5d4c5e0eaf65839d9228 (diff)
downloadsigc++-c57a2baab6ffd69dd1b27e52303d0777b75aec29.tar.gz
sigc++/meson.build: Library name is sigc-2.0
Pointed out by Chun-wei Fan in PR #51.
-rw-r--r--sigc++/meson.build8
1 files changed, 4 insertions, 4 deletions
diff --git a/sigc++/meson.build b/sigc++/meson.build
index b398661..4a6fb82 100644
--- a/sigc++/meson.build
+++ b/sigc++/meson.build
@@ -1,7 +1,7 @@
# sigc++
-# Input: sigcxx_build_dep, sigcxx_pcname, sigcxx_libversion, install_includedir,
-# project_source_root
+# Input: sigcxx_build_dep, sigcxx_pcname, sigcxx_libversion, sigcxx_api_version,
+# install_includedir, project_source_root, sigc_res
# Output: source_h_files, built_h_files, sigcxx_dep, built_files_root,
# built_h_file_targets
@@ -162,7 +162,7 @@ if maintainer_mode
endforeach
extra_include_dirs = ['..']
- sigcxx_library = library(sigcxx_pcname,
+ sigcxx_library = library('sigc-' + sigcxx_api_version,
source_cc_files, built_cc_file_targets, built_h_file_targets,
extra_sigc_objects,
version: sigcxx_libversion,
@@ -205,7 +205,7 @@ else # not maintainer_mode
endforeach
extra_include_dirs = [ '..', '..' / 'untracked' ]
- sigcxx_library = library(sigcxx_pcname,
+ sigcxx_library = library('sigc-' + sigcxx_api_version,
source_cc_files, untracked_built_cc_files,
extra_sigc_objects,
version: sigcxx_libversion,