meson.build 427 B

123456789101112131415161718192021222324252627
  1. executable(meson.project_name(),
  2. 'jose.c', 'jose.h',
  3. 'b64/b64.h',
  4. 'b64/dec.c',
  5. 'b64/enc.c',
  6. 'jwk/jwk.h',
  7. 'jwk/eql.c',
  8. 'jwk/exc.c',
  9. 'jwk/gen.c',
  10. 'jwk/pub.c',
  11. 'jwk/thp.c',
  12. 'jwk/use.c',
  13. 'jws/jws.h',
  14. 'jws/fmt.c',
  15. 'jws/sig.c',
  16. 'jws/ver.c',
  17. 'jwe/jwe.h',
  18. 'jwe/pwd.h',
  19. 'jwe/fmt.c',
  20. 'jwe/dec.c',
  21. 'jwe/enc.c',
  22. 'alg.c',
  23. 'fmt.c',
  24. dependencies: jansson,
  25. link_with: libjose,
  26. install: true
  27. )