mirror of
https://github.com/varun-r-mallya/sysprof.git
synced 2026-02-12 16:10:54 +00:00
@ -1,33 +1,35 @@
|
|||||||
install_data('sysprof-mime.xml',
|
if get_option('enable_gtk') and get_option('libsysprof')
|
||||||
install_dir: join_paths(datadir, 'mime/packages')
|
|
||||||
)
|
|
||||||
|
|
||||||
install_data('org.gnome.sysprof3.gschema.xml',
|
install_data('sysprof-mime.xml',
|
||||||
install_dir: join_paths(datadir, 'glib-2.0/schemas')
|
install_dir: join_paths(datadir, 'mime/packages')
|
||||||
)
|
)
|
||||||
|
|
||||||
i18n.merge_file(
|
install_data('org.gnome.sysprof3.gschema.xml',
|
||||||
input: 'org.gnome.Sysprof3.appdata.xml.in',
|
install_dir: join_paths(datadir, 'glib-2.0/schemas')
|
||||||
output: 'org.gnome.Sysprof3.appdata.xml',
|
)
|
||||||
po_dir: podir,
|
|
||||||
install: true,
|
|
||||||
install_dir: join_paths(datadir, 'metainfo')
|
|
||||||
)
|
|
||||||
|
|
||||||
i18n.merge_file(
|
i18n.merge_file(
|
||||||
input: 'org.gnome.Sysprof3.desktop.in',
|
input: 'org.gnome.Sysprof3.appdata.xml.in',
|
||||||
output: 'org.gnome.Sysprof3.desktop',
|
output: 'org.gnome.Sysprof3.appdata.xml',
|
||||||
type: 'desktop',
|
po_dir: podir,
|
||||||
po_dir: podir,
|
install: true,
|
||||||
install: true,
|
install_dir: join_paths(datadir, 'metainfo')
|
||||||
install_dir: join_paths(datadir, 'applications')
|
)
|
||||||
)
|
|
||||||
|
i18n.merge_file(
|
||||||
|
input: 'org.gnome.Sysprof3.desktop.in',
|
||||||
|
output: 'org.gnome.Sysprof3.desktop',
|
||||||
|
type: 'desktop',
|
||||||
|
po_dir: podir,
|
||||||
|
install: true,
|
||||||
|
install_dir: join_paths(datadir, 'applications')
|
||||||
|
)
|
||||||
|
|
||||||
if get_option('enable_gtk')
|
|
||||||
icon_sizes = ['scalable', 'symbolic']
|
icon_sizes = ['scalable', 'symbolic']
|
||||||
foreach size: icon_sizes
|
foreach size: icon_sizes
|
||||||
install_subdir('icons/' + size,
|
install_subdir('icons/' + size,
|
||||||
install_dir: join_paths(datadir, 'icons/hicolor')
|
install_dir: join_paths(datadir, 'icons/hicolor')
|
||||||
)
|
)
|
||||||
endforeach
|
endforeach
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
|||||||
@ -25,11 +25,18 @@ ipc_legacy_src = gnome.gdbus_codegen('ipc-legacy',
|
|||||||
namespace: 'IpcLegacy',
|
namespace: 'IpcLegacy',
|
||||||
)
|
)
|
||||||
|
|
||||||
install_data(['org.gnome.Sysprof3.Profiler.xml',
|
if get_option('with_sysprofd') == 'bundled'
|
||||||
'org.gnome.Sysprof3.Service.xml',
|
install_data(['org.gnome.Sysprof3.Service.xml',
|
||||||
'org.gnome.Sysprof2.xml'],
|
'org.gnome.Sysprof2.xml'],
|
||||||
install_dir: join_paths(datadir, 'dbus-1/interfaces'),
|
install_dir: join_paths(datadir, 'dbus-1/interfaces'),
|
||||||
)
|
)
|
||||||
|
endif
|
||||||
|
|
||||||
|
if get_option('libsysprof')
|
||||||
|
install_data(['org.gnome.Sysprof3.Profiler.xml'],
|
||||||
|
install_dir: join_paths(datadir, 'dbus-1/interfaces'),
|
||||||
|
)
|
||||||
|
endif
|
||||||
|
|
||||||
ipc_include_dirs = include_directories('.')
|
ipc_include_dirs = include_directories('.')
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user