mirror of
https://gitlab.gnome.org/GNOME/libsecret.git
synced 2024-12-22 04:38:55 +00:00
86 lines
2.9 KiB
Meson
86 lines
2.9 KiB
Meson
project('libsecret', 'c',
|
|
version: '0.18.8',
|
|
license: 'GPL2+',
|
|
meson_version: '>= 0.48',
|
|
)
|
|
|
|
gnome = import('gnome')
|
|
i18n = import('i18n')
|
|
|
|
# API version
|
|
api_version = '1.0.0'
|
|
api_version_major = api_version.split('.')[0]
|
|
api_version_minor = api_version.split('.')[1]
|
|
api_version_micro = api_version.split('.')[2]
|
|
|
|
libtool_version = '0.0.0'
|
|
|
|
# Options
|
|
with_manpage = get_option('manpage')
|
|
with_gcrypt = get_option('gcrypt')
|
|
enable_debug = get_option('debugging')
|
|
with_vapi = get_option('vapi')
|
|
with_gtkdoc = get_option('gtk_doc')
|
|
|
|
# Some variables
|
|
config_h_dir = include_directories('.')
|
|
libsecret_prefix = get_option('prefix')
|
|
datadir = join_paths(libsecret_prefix, get_option('datadir'))
|
|
includedir = join_paths(libsecret_prefix, get_option('includedir'))
|
|
bindir = join_paths(libsecret_prefix, get_option('bindir'))
|
|
libdir = join_paths(libsecret_prefix, get_option('libdir'))
|
|
libexecdir = join_paths(libsecret_prefix, get_option('libexecdir'))
|
|
locale_dir = join_paths(libsecret_prefix, get_option('localedir'))
|
|
pkgdatadir = join_paths(datadir, meson.project_name())
|
|
pkglibdir = join_paths(libdir, meson.project_name())
|
|
sysconfdir = join_paths(libsecret_prefix, get_option('sysconfdir'))
|
|
po_dir = join_paths(meson.source_root(), 'po')
|
|
|
|
# Dependencies
|
|
min_glib_version = '2.44'
|
|
glib_deps = [
|
|
dependency('glib-2.0', version: '>=' + min_glib_version),
|
|
dependency('gio-2.0', version: '>=' + min_glib_version),
|
|
dependency('gio-unix-2.0', version: '>=' + min_glib_version),
|
|
]
|
|
if with_gcrypt
|
|
min_libgcrypt_version = '1.2.2'
|
|
libgcrypt_config = find_program('libgcrypt-config')
|
|
libgcrypt_version = run_command(libgcrypt_config, '--version').stdout().strip()
|
|
if (libgcrypt_version.version_compare('>' + libgcrypt_version))
|
|
error('@0@ requires at least gcrypt version @1@, but version found is @2@'
|
|
.format(meson.project_name(), min_libgcrypt_version, libgcrypt_version))
|
|
endif
|
|
message('gcrypt version: @0@'.format(libgcrypt_version))
|
|
gcrypt_dep = declare_dependency(
|
|
link_args: run_command(libgcrypt_config, '--libs').stdout().strip().split(),
|
|
compile_args: run_command(libgcrypt_config, '--cflags').stdout().strip().split(),
|
|
)
|
|
endif
|
|
|
|
# Libraries
|
|
math = meson.get_compiler('c').find_library('m')
|
|
|
|
# Configuration
|
|
conf = configuration_data()
|
|
conf.set_quoted('GETTEXT_PACKAGE', meson.project_name())
|
|
conf.set_quoted('G_LOG_DOMAIN', meson.project_name())
|
|
conf.set_quoted('LOCALEDIR', locale_dir)
|
|
conf.set_quoted('PACKAGE_NAME', meson.project_name())
|
|
conf.set_quoted('PACKAGE_STRING', meson.project_name())
|
|
conf.set_quoted('PACKAGE_VERSION', meson.project_version())
|
|
conf.set('WITH_GCRYPT', with_gcrypt)
|
|
if with_gcrypt
|
|
conf.set_quoted('LIBGCRYPT_VERSION', min_libgcrypt_version)
|
|
endif
|
|
conf.set('WITH_DEBUG', enable_debug)
|
|
conf.set('_DEBUG', enable_debug)
|
|
configure_file(output: 'config.h', configuration: conf)
|
|
|
|
# Subfolders
|
|
subdir('po')
|
|
subdir('egg')
|
|
subdir('libsecret')
|
|
subdir('tool')
|
|
subdir('docs')
|