diff --git a/src/background/meson.build b/src/background/meson.build index 9d22bbb1..950db772 100644 --- a/src/background/meson.build +++ b/src/background/meson.build @@ -1,3 +1,3 @@ executable('wf-background', ['background.cpp'], - dependencies: [gtkmm, wayland_client, libutil, wf_protos, wfconfig, gtklayershell, epoxy], + dependencies: [gtkmm, gtklayershell, wayland_client, libutil, wf_protos, wfconfig, epoxy], install: true) diff --git a/src/dock/meson.build b/src/dock/meson.build index 80ce8178..51acac33 100644 --- a/src/dock/meson.build +++ b/src/dock/meson.build @@ -1,3 +1,3 @@ executable('wf-dock', ['dock.cpp', 'dock-app.cpp', 'toplevel.cpp', 'toplevel-icon.cpp'], - dependencies: [gtkmm, wayland_client, libutil, wf_protos, wfconfig, gtklayershell], + dependencies: [gtkmm, gtklayershell, wayland_client, libutil, wf_protos, wfconfig], install: true) diff --git a/src/panel/meson.build b/src/panel/meson.build index f086c614..8b84ac41 100644 --- a/src/panel/meson.build +++ b/src/panel/meson.build @@ -23,11 +23,11 @@ widget_sources = [ deps = [ gtkmm, + gtklayershell, wayland_client, libutil, wf_protos, wfconfig, - gtklayershell, dbusmenu_gtk, ] @@ -41,4 +41,4 @@ executable( ['panel.cpp'] + widget_sources, dependencies: deps, install: true, -) \ No newline at end of file +) diff --git a/src/util/meson.build b/src/util/meson.build index 552635be..4bd8174e 100644 --- a/src/util/meson.build +++ b/src/util/meson.build @@ -7,7 +7,7 @@ util = static_library( 'wf-popover.cpp', 'css-config.cpp', ], - dependencies: [wf_protos, wayland_client, gtkmm, wfconfig, libinotify, gtklayershell], + dependencies: [wf_protos, gtklayershell, wayland_client, gtkmm, wfconfig, libinotify], ) util_includes = include_directories('.')