mirror of
https://codeberg.org/dwl/dwl.git
synced 2026-04-05 07:15:31 -04:00
Update meson.build
This commit is contained in:
parent
b7f5877329
commit
0a32118953
1 changed files with 12 additions and 6 deletions
18
meson.build
18
meson.build
|
|
@ -13,6 +13,17 @@ wlroots_dep = dependency('wlroots')
|
|||
xkbcommon_dep = dependency('xkbcommon')
|
||||
libinput_dep = dependency('libinput')
|
||||
|
||||
c_args = [
|
||||
'-DWLR_USE_UNSTABLE',
|
||||
'-D_POSIX_C_SOURCE=200809L',
|
||||
'-DXWAYLAND',
|
||||
'-DVERSION="@0@"'.format(meson.project_version())
|
||||
]
|
||||
|
||||
if xcb.found() and xlibs.found()
|
||||
c_args += '-DXWAYLAND'
|
||||
endif
|
||||
|
||||
executable('dwl',
|
||||
'dwl.c',
|
||||
'util.c',
|
||||
|
|
@ -27,12 +38,7 @@ executable('dwl',
|
|||
libinput_dep,
|
||||
],
|
||||
install : true,
|
||||
c_args : [
|
||||
'-DWLR_USE_UNSTABLE',
|
||||
'-D_POSIX_C_SOURCE=200809L',
|
||||
'-DXWAYLAND',
|
||||
'-DVERSION="@0@"'.format(meson.project_version())
|
||||
]
|
||||
c_args : c_args
|
||||
)
|
||||
|
||||
install_man('dwl.1')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue