mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-14 17:25:59 +01:00
bf4e2e0eac
Co-authored-by: Jason Francis <cycl0ps@tuta.io>
17 lines
293 B
Meson
17 lines
293 B
Meson
wlr_files += files(
|
|
'array.c',
|
|
'global.c',
|
|
'log.c',
|
|
'region.c',
|
|
'shm.c',
|
|
'signal.c',
|
|
'time.c',
|
|
)
|
|
|
|
if uuid.found()
|
|
wlr_deps += uuid
|
|
add_project_arguments('-DHAS_LIBUUID=1', language: 'c')
|
|
else
|
|
add_project_arguments('-DHAS_LIBUUID=0', language: 'c')
|
|
endif
|
|
wlr_files += files('uuid.c')
|