Update meson.build

This commit is contained in:
StratusFearMe21 2023-01-15 22:28:32 +00:00 committed by GitHub
parent b7f5877329
commit 0a32118953
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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')