diff options
Diffstat (limited to 'src/meson.build')
-rw-r--r-- | src/meson.build | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/meson.build b/src/meson.build index 7b658d31..8430f597 100644 --- a/src/meson.build +++ b/src/meson.build @@ -3,6 +3,7 @@ src = globber.stdout().strip().split('\n') executable('Hyprland', src, cpp_args: ['-DWLR_USE_UNSTABLE'], + link_args: '-rdynamic', dependencies: [ server_protos, dependency('wayland-server'), @@ -20,7 +21,9 @@ executable('Hyprland', src, dependency('pixman-1'), dependency('gl', 'opengl'), - dependency('threads') + dependency('threads'), + dependency('pango'), + dependency('pangocairo') ], install : true ) |