mirror of
https://github.com/clearlinux/linux-steam-integration.git
synced 2026-08-28 13:25:49 +00:00
6154f2373c
Signed-off-by: Ikey Doherty <ikey@solus-project.com>
18 lines
430 B
Meson
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
|