aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--meson.build5
1 files changed, 5 insertions, 0 deletions
diff --git a/meson.build b/meson.build
index 6299f4e..89fa8df 100644
--- a/meson.build
+++ b/meson.build
@@ -143,6 +143,10 @@ if get_option('logind') != 'disabled'
endif
endif
+# needed for cross-compilation
+realtime = meson.get_compiler('c').find_library('rt')
+private_deps += realtime
+
if with_builtin
add_project_arguments('-DBUILTIN_ENABLED=1', language: 'c')
private_files += server_files
@@ -198,6 +202,7 @@ if with_server
[ server_files, 'seatd/seatd.c' ],
include_directories: [include_directories('.', 'include')],
install: true,
+ dependencies: [realtime],
)
endif