meson.build 308 B

12345678910111213
  1. tangd = executable('tangd',
  2. 'http.c',
  3. 'keys.c',
  4. 'tangd.c',
  5. dependencies: [jose, http_parser],
  6. install: true,
  7. install_dir: libexecdir
  8. )
  9. bins += join_paths(meson.current_source_dir(), 'tang-show-keys')
  10. libexecbins += join_paths(meson.current_source_dir(), 'tangd-keygen')
  11. # vim:set ts=2 sw=2 et: