diff options
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meson.build b/meson.build index 8bc2b01..1c71eef 100644 --- a/meson.build +++ b/meson.build @@ -84,6 +84,7 @@ compgen_sources = files( ) cc = meson.get_compiler('c') +librt = cc.find_library('rt', required: false) libm = cc.find_library('m', required: false) freetype = dependency('freetype2') harfbuzz = dependency('harfbuzz') @@ -126,7 +127,7 @@ endforeach executable( 'tofi', tofi_sources, wl_proto_src, wl_proto_headers, - dependencies: [libm, freetype, harfbuzz, cairo, pangocairo, wayland_client, xkbcommon], + dependencies: [librt, libm, freetype, harfbuzz, cairo, pangocairo, wayland_client, xkbcommon], install: true ) |