Files
linux-steam-integration/data/meson.build
T
Ikey Doherty 6154f2373c Allow installing .desktop files once more
Signed-off-by: Ikey Doherty <ikey@solus-project.com>
2017-10-10 23:03:51 +01:00

18 lines
430 B
Meson

appsdir = join_paths(datadir, 'applications')
# If frontend is enabled, install lsi-settings.desktop
if with_frontend == true
install_data(
'lsi-settings.desktop',
install_dir: appsdir,
)
endif
# If we need to co-exist, install alternative .desktop file (not conflicting with Steam)
if shim_behaviour == 'co-exist'
install_data(
'lsi-steam.desktop',
install_dir: appsdir,
)
endif