meson.build 321 B

12345678910111213141516171819
  1. cd = configuration_data()
  2. cd.set('VERSION', meson.project_version())
  3. configure_file(
  4. input: 'jose.h.in',
  5. output: 'jose.h',
  6. configuration: cd
  7. )
  8. install_headers(
  9. meson.current_build_dir() + '/jose.h',
  10. 'cfg.h',
  11. 'io.h',
  12. 'b64.h',
  13. 'jwk.h',
  14. 'jws.h',
  15. 'jwe.h',
  16. 'openssl.h',
  17. subdir: meson.project_name()
  18. )