Skip to content

Commit c3ed849

Browse files
committed
build: always add a tag to each install target
1 parent 3fe0508 commit c3ed849

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

tools/install/meson.build

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ if build_application
55
install_subdir(
66
meson.project_source_root() / 'assets',
77
install_dir: 'share/oopetris',
8+
install_tag: 'assets',
89
exclude_files: ['oopetris.desktop.in', 'OOPetris.svg', 'recordings.magic'],
910
exclude_directories: ['icon'],
1011
)
@@ -38,13 +39,15 @@ if build_application
3839
input: [oopetris_magic_file, magic_file],
3940
output: 'magic',
4041
install_dir: magic_dir,
42+
install_tag: 'other',
4143
)
4244

4345
else
4446

4547
install_data(
4648
oopetris_magic_file,
4749
install_dir: magic_dir,
50+
install_tag: 'other',
4851
rename: ['magic'],
4952
)
5053

@@ -57,6 +60,7 @@ if build_application
5760
configuration: conf,
5861
install: true,
5962
install_dir: datadir / 'applications',
63+
install_tag: 'other',
6064
)
6165

6266
logos = [
@@ -80,6 +84,7 @@ if build_application
8084
install_data(
8185
meson.project_source_root() / 'assets' / 'icon' / logo,
8286
install_dir: datadir / 'icons' / 'hicolor' / name / 'apps',
87+
install_tag: 'assets',
8388
rename: [app_name + '.' + ext],
8489
)
8590
endforeach

0 commit comments

Comments
 (0)