diff options
author | Leon Henrik Plickat <leonhenrik.plickat@stud.uni-goettingen.de> | 2020-09-25 12:20:47 +0200 |
---|---|---|
committer | Leon Henrik Plickat <leonhenrik.plickat@stud.uni-goettingen.de> | 2020-09-25 12:20:47 +0200 |
commit | 09ac1ee69f213461299d965a7903f73e46a644fe (patch) | |
tree | ea0d4fcc0be153c6fa49619158d3a9540c150654 /meson.build | |
parent | f53c7341152bbc4b642935953e317a2a29abc99c (diff) | |
download | wlclock-09ac1ee69f213461299d965a7903f73e46a644fe.tar.gz wlclock-09ac1ee69f213461299d965a7903f73e46a644fe.tar.bz2 |
Draw clock face
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/meson.build b/meson.build index 1490611..f5ee332 100644 --- a/meson.build +++ b/meson.build @@ -32,6 +32,7 @@ wayland_client = dependency('wayland-client', include_type: 'system') wayland_cursor = dependency('wayland-cursor', include_type: 'system') cairo = dependency('cairo') realtime = cc.find_library('rt') +math = cc.find_library('m') if ['dragonfly', 'freebsd', 'netbsd', 'openbsd'].contains(host_machine.system()) libepoll = dependency('epoll-shim', required: get_option('handle-signals')) @@ -53,13 +54,14 @@ executable( 'src/wlclock.c', ), dependencies: [ + cairo, + libepoll, + math, + realtime, wayland_client, - wayland_protocols, wayland_cursor, - cairo, + wayland_protocols, wl_protocols, - realtime, - libepoll, ], include_directories: include_directories('src'), install: true, |