meson.build 879 B

1234567891011121314151617181920212223242526272829303132333435
  1. project('reserved target names', 'c')
  2. # FIXME: Setting this causes it to leak to all other tests
  3. #default_options : ['b_coverage=true']
  4. subdir('all')
  5. subdir('benchmark')
  6. subdir('clean')
  7. subdir('clean-ctlist')
  8. subdir('clean-gcda')
  9. subdir('clean-gcno')
  10. subdir('coverage')
  11. subdir('coverage-html')
  12. subdir('coverage-text')
  13. subdir('coverage-xml')
  14. subdir('dist')
  15. subdir('distcheck')
  16. subdir('install')
  17. # We don't have a 'PHONY' directory because Windows and OSX
  18. # choke horribly when there are two entries with the same
  19. # name but different case.
  20. subdir('phony')
  21. subdir('reconfigure')
  22. subdir('scan-build')
  23. subdir('test')
  24. subdir('uninstall')
  25. subdir('runtarget')
  26. py3 = import('python3').find_python()
  27. custom_target('ctlist-test', output : 'out.txt',
  28. command : [py3, '-c', 'print("")'],
  29. capture : true,
  30. build_by_default : true)