meson.build 723 B

123456789101112131415161718192021
  1. # CounterComponent Example - demonstrates Spry.Component with outlets for counter page
  2. executable('counter-component',
  3. 'CounterComponent.vala',
  4. dependencies: [spry_dep, astralis_dep, invercargill_dep, inversion_dep],
  5. install: false
  6. )
  7. # TodoComponent Example - demonstrates Spry.Component for a complete todo list CRUD
  8. executable('todo-component',
  9. 'TodoComponent.vala',
  10. dependencies: [spry_dep, astralis_dep, invercargill_dep, inversion_dep],
  11. install: false
  12. )
  13. # TodoComponent Example - demonstrates Spry.Component for a complete todo list CRUD
  14. executable('simple-example',
  15. 'SimpleExample.vala',
  16. dependencies: [spry_dep, astralis_dep, invercargill_dep, inversion_dep],
  17. install: false
  18. )