libsecret/tool/meson.build
Niels De Graef bfa66f35cc meson: Add tests for GIR-based languages
Also add a test suite argument to more easily distinguish them.
2020-06-17 22:02:15 +02:00

20 lines
414 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