meson_options.txt 959 B

1234567891011121314151617181920212223242526272829303132
  1. option('libraries',
  2. description: 'Compile Wayland libraries',
  3. type: 'boolean',
  4. value: true)
  5. option('scanner',
  6. description: 'Compile wayland-scanner binary',
  7. type: 'boolean',
  8. value: true)
  9. option('tests',
  10. description: 'Compile Wayland tests',
  11. type: 'boolean',
  12. value: true)
  13. option('documentation',
  14. description: 'Build the documentation (requires Doxygen, dot, xmlto, xsltproc)',
  15. type: 'boolean',
  16. value: true)
  17. option('docbook_validation',
  18. type: 'boolean',
  19. value: false,
  20. description: 'Validate the intermediate DocBook XML during the documentation build')
  21. option('dtd_validation',
  22. description: 'Validate the protocol DTD (requires libxml2)',
  23. type: 'boolean',
  24. value: true)
  25. option('book',
  26. description: 'Build the Wayland Book (requires mdbook)',
  27. type: 'boolean',
  28. value: true)
  29. option('icon_directory',
  30. description: 'Location used to look for cursors (defaults to ${datadir}/icons if unset)',
  31. type: 'string',
  32. value: '')