libsecret/egg/meson.build
Niels De Graef b19c309096 Add build support for Meson
To build with meson, use the following commands:

```
$ meson build
$ ninja -C build
 # in case you want to install
$ ninja -C build install
```
2019-01-19 21:03:56 +00:00

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,
)