mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2026-06-13 14:32:57 -04:00
meson: no-op rt library for openbsd
This commit is contained in:
parent
3bd8f29b13
commit
98edc01c45
1 changed files with 6 additions and 1 deletions
|
|
@ -121,7 +121,12 @@ pixman = dependency('pixman-1',
|
|||
default_options: ['werror=false'],
|
||||
)
|
||||
math = cc.find_library('m')
|
||||
rt = cc.find_library('rt')
|
||||
platform = target_machine.system()
|
||||
if platform == 'openbsd'
|
||||
rt = dependency('', required: false)
|
||||
else
|
||||
rt = cc.find_library('rt')
|
||||
endif
|
||||
|
||||
wlr_files = []
|
||||
wlr_deps = [
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue