| 123456789101112131415161718192021 |
- # Spry Framework Website
- # A modern, techy website showcasing the Spry framework and its ecosystem
- website_sources = files(
- 'Main.vala',
- 'MainTemplate.vala',
- 'Pages/HomePage.vala',
- 'Components/FeatureCardComponent.vala',
- 'Components/AuroraWaveComponent.vala',
- 'Components/CodeBlockComponent.vala',
- 'Components/StatCardComponent.vala',
- )
- # Math library for particle physics (sin/cos in explode function)
- m_dep = meson.get_compiler('c').find_library('m', required: false)
- executable('spry-demo',
- website_sources,
- dependencies: [spry_dep, astralis_dep, invercargill_dep, inversion_dep, m_dep],
- install: true
- )
|