raven/meson.build
hippoz 1b53572480
Initial commit.
This commit adds some basic components.
Currently, there is an issue with the drawing order of the text.
2022-01-22 17:51:54 +02:00

8 lines
No EOL
233 B
Meson

project('blit', 'cpp')
cairomm_dep = dependency('cairomm-1.0')
pangocairo_dep = dependency('pangocairo')
xlib_dep = dependency('x11')
executable('blit_app', './src/main.cpp', dependencies : [cairomm_dep, xlib_dep, pangocairo_dep])