mirror of
https://gitlab.gnome.org/GNOME/libsecret.git
synced 2024-12-22 12:48:51 +00:00
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,
|
||
|
)
|