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 ```
12 lines
224 B
Meson
12 lines
224 B
Meson
secret_tool_sources = [
|
|
'secret-tool.c',
|
|
]
|
|
|
|
secret_tool = executable('secret-tool',
|
|
secret_tool_sources,
|
|
dependencies: libsecret_dep,
|
|
include_directories: config_h_dir,
|
|
c_args: libsecret_cflags,
|
|
install: true,
|
|
)
|