| 1234567891011121314151617181920 |
- cd = configuration_data()
- cd.set('VERSION', meson.project_version())
- jose_h = configure_file(
- input: 'jose.h.in',
- output: 'jose.h',
- configuration: cd
- )
- install_headers(
- jose_h,
- 'cfg.h',
- 'io.h',
- 'b64.h',
- 'jwk.h',
- 'jws.h',
- 'jwe.h',
- 'openssl.h',
- subdir: meson.project_name()
- )
|