Files
picom/src/backend/meson.build
Yuxuan Shui 061dd8e52e Reuse some code from the new gl backend
Signed-off-by: Yuxuan Shui <yshuiv7@gmail.com>
2019-01-27 18:16:28 +00:00

15 lines
311 B
Meson

# enable xrender
srcs += [ files('backend_common.c') ]
if get_option('new_backends')
srcs += [ files('xrender.c', 'backend.c') ]
# enable opengl
if get_option('opengl')
srcs += [ files('gl/gl_common.c', 'gl/glx.c') ]
endif
endif
if get_option('opengl')
srcs += [ files('gl/gl_common.c') ]
endif