meson_options.txt
ASCII text
1option( 2'theme_name', 3type: 'string', 4value: 'Charta', 5description: 'Base theme name', 6) 7 8option( 9'colors', 10type: 'array', 11choices: ['default', 'light', 'dark'], 12description: 'List of color variants to build', 13) 14 15option( 16'sizes', 17type: 'array', 18choices: ['default', 'compact'], 19description: 'List of size variants to build', 20) 21 22option( 23'gnome_shell_version', 24type: 'string', 25description: 'Build GNOME Shell theme for specific version', 26) 27 28option( 29'gtk4_version', 30type: 'string', 31description: 'Build GTK 4 theme for specific version', 32) 33 34option( 35'flatpak', 36type: 'boolean', 37value: false, 38description: 'Whether to build theme for flatpak package', 39) 40