mirror of
https://gitlab.gnome.org/GNOME/libsecret.git
synced 2024-12-22 04:38:55 +00:00
b19c309096
To build with meson, use the following commands: ``` $ meson build $ ninja -C build # in case you want to install $ ninja -C build install ```
25 lines
349 B
Meson
25 lines
349 B
Meson
libegg_sources = [
|
|
'egg-hex.c',
|
|
'egg-secure-memory.c',
|
|
'egg-testing.c',
|
|
]
|
|
|
|
if with_gcrypt
|
|
libegg_sources += [
|
|
'egg-dh.c',
|
|
'egg-hkdf.c',
|
|
'egg-libgcrypt.c',
|
|
]
|
|
endif
|
|
|
|
libegg_deps = [
|
|
glib_deps,
|
|
gcrypt_dep,
|
|
]
|
|
|
|
libegg = static_library('egg',
|
|
libegg_sources,
|
|
dependencies: libegg_deps,
|
|
include_directories: config_h_dir,
|
|
)
|