mirror of
https://gitlab.gnome.org/GNOME/libsecret.git
synced 2024-12-22 12:48:51 +00:00
ea57d26930
These changes add TPM2 derived encryption key to secret file backend.
28 lines
573 B
Meson
28 lines
573 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,
|
|
)
|
|
|
|
if get_option('gcrypt') and host_machine.system() != 'windows'
|
|
test('test-secret-tool.sh',
|
|
find_program('test-secret-tool.sh'),
|
|
env: test_env,
|
|
suite: 'secret-tool',
|
|
)
|
|
endif
|
|
|
|
if get_option('tpm2')
|
|
test('test-secret-tool-tpm2.sh',
|
|
find_program('test-secret-tool-tpm2.sh'),
|
|
env: test_env,
|
|
suite: 'secret-tool',
|
|
)
|
|
endif
|