mirror of
https://github.com/clearlinux/linux-steam-integration.git
synced 2026-09-08 06:42:01 +00:00
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
|