Meson is a build system focused on speed an ease of use, which helps speeding up the software development. This patch adds meson support along autotools. https://bugzilla.gnome.org/show_bug.cgi?id=785414
13 lines
392 B
Meson
13 lines
392 B
Meson
status_files = [
|
|
'audio-input-microphone-high-symbolic.svg',
|
|
'audio-input-microphone-low-symbolic.svg',
|
|
'audio-input-microphone-medium-symbolic.svg',
|
|
'audio-input-microphone-muted-symbolic.svg'
|
|
]
|
|
|
|
foreach file: status_files
|
|
install_data(
|
|
join_paths('scalable', 'status', file),
|
|
install_dir: join_paths(control_center_icondir, 'hicolor', 'scalable', 'status')
|
|
)
|
|
endforeach
|