summaryrefslogtreecommitdiff
path: root/meson.build
diff options
context:
space:
mode:
authorLeon Henrik Plickat <leonhenrik.plickat@stud.uni-goettingen.de>2020-09-25 12:20:47 +0200
committerLeon Henrik Plickat <leonhenrik.plickat@stud.uni-goettingen.de>2020-09-25 12:20:47 +0200
commit09ac1ee69f213461299d965a7903f73e46a644fe (patch)
treeea0d4fcc0be153c6fa49619158d3a9540c150654 /meson.build
parentf53c7341152bbc4b642935953e317a2a29abc99c (diff)
downloadwlclock-09ac1ee69f213461299d965a7903f73e46a644fe.tar.gz
wlclock-09ac1ee69f213461299d965a7903f73e46a644fe.tar.bz2
Draw clock face
Diffstat (limited to '')
-rw-r--r--meson.build10
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,