meson.build 275 B

12345678
  1. # Copy public headers scattered across the source tree into a single directory
  2. # so that we can use it in declare_dependency()
  3. foreach h : public_headers
  4. configure_file(input: h,
  5. output: '@BASENAME@.h',
  6. copy: true)
  7. endforeach
  8. public_incs = include_directories('.')