]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#3731] Add version to libkea-cfgrpt.so
authorAndrei Pavel <andrei@isc.org>
Wed, 12 Mar 2025 07:35:12 +0000 (09:35 +0200)
committerFrancis Dupont <fdupont@isc.org>
Thu, 13 Mar 2025 17:03:38 +0000 (18:03 +0100)
src/lib/process/cfgrpt/meson.build

index 35a56a73dada6e16a4f3efd4e3663d285d18a2af..ecd1b2cf6e394f9597f020822e658c4e5bddea29 100644 (file)
@@ -4,7 +4,7 @@ config_report_cc = configure_file(
     output: 'config_report.cc',
     command: [mk_cfgrpt, '@INPUT@', '@OUTPUT@'],
 )
-kea_cfgrpt_lib = library(
+kea_cfgrpt_lib = shared_library(
     'kea-cfgrpt',
     'cfgrpt.cc',
     config_report_cc,
@@ -12,6 +12,7 @@ kea_cfgrpt_lib = library(
     install: true,
     install_dir: 'lib',
     link_with: LIBS_BUILT_SO_FAR,
+    version: '1.0.0',
 )
 LIBS_BUILT_SO_FAR = [kea_cfgrpt_lib] + LIBS_BUILT_SO_FAR
 subdir('tests')