diff options
author | dec05eba <dec05eba@protonmail.com> | 2024-11-28 12:16:49 +0100 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2024-11-28 12:16:49 +0100 |
commit | ece3d02e0a34d7a90d3e3d21fc426f4954ddfe86 (patch) | |
tree | e114feeaef3f6c981ba942e95b865ca86f869181 /meson.build | |
parent | 5cfca3e55a49e8656c987c1e8b15da3c4380d6ff (diff) |
Fix window not being fullscreen on multi monitor systems on cinnamon. Fix some applications getting minimized when opening the ui
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/meson.build b/meson.build index 056fea3..aeb144c 100644 --- a/meson.build +++ b/meson.build @@ -42,11 +42,6 @@ src = [ mglpp_proj = subproject('mglpp') mglpp_dep = mglpp_proj.get_variable('mglpp_dep') -dep = [ - mglpp_dep, - dependency('xcomposite'), -] - prefix = get_option('prefix') datadir = get_option('datadir') gsr_ui_resources_path = join_paths(prefix, datadir, 'gsr-ui') @@ -55,7 +50,12 @@ executable( meson.project_name(), src, install : true, - dependencies : dep, + dependencies : [ + mglpp_dep, + dependency('xcomposite'), + dependency('xfixes'), + dependency('xi'), + ], cpp_args : '-DGSR_UI_RESOURCES_PATH="' + gsr_ui_resources_path + '"', ) |