meson.build 442 B

1234567891011121314
  1. # Testing protobuf files that are deeply hierarchical
  2. # and must preserve their path segments in output files
  3. # because protoc will always put it in there.
  4. generated = gen.process('com/mesonbuild/simple.proto',
  5. 'com/mesonbuild/subsite/complex.proto',
  6. preserve_path_from : meson.current_source_dir(),
  7. )
  8. e = executable('pathprog', 'pathprog.cpp', generated,
  9. override_options : ['unity=off'],
  10. dependencies : dep)
  11. test('pathprog', e)