blob: c5a2680552248320527b2062665ff667bded8968 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
install_subdir(
'quickopen',
install_dir: join_paths(
pkglibdir,
'plugins',
)
)
custom_target(
'quickopen.plugin',
input: 'quickopen.plugin.desktop.in',
output: 'quickopen.plugin',
command: msgfmt_plugin_cmd,
install: true,
install_dir: join_paths(
pkglibdir,
'plugins',
)
)
|