mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-03-20 05:33:47 -04:00
initial grid implementation
This allows us to render *something*, even though it's inefficient, stupid and far far away from the real thing.
This commit is contained in:
parent
acda4d2d31
commit
9ccc8433c3
5 changed files with 228 additions and 7 deletions
|
|
@ -16,6 +16,10 @@ add_project_arguments(
|
|||
(is_debug_build ? ['-D_DEBUG'] : []),
|
||||
language: 'c',
|
||||
)
|
||||
|
||||
cc = meson.get_compiler('c')
|
||||
math = cc.find_library('m')
|
||||
|
||||
fontconfig = dependency('fontconfig')
|
||||
cairo = dependency('cairo')
|
||||
cairo_ft = dependency('cairo-ft')
|
||||
|
|
@ -53,11 +57,12 @@ endforeach
|
|||
|
||||
executable(
|
||||
'f00ter',
|
||||
'font.c', 'font.h',
|
||||
'log.c', 'log.h',
|
||||
'main.c',
|
||||
'shm.c', 'shm.h',
|
||||
'slave.c', 'slave.h',
|
||||
'tllist.h',
|
||||
wl_proto_src + wl_proto_headers,
|
||||
dependencies: [cairo, cairo_ft, fontconfig, wayland_client, wayland_cursor, xkb],
|
||||
dependencies: [math, cairo, cairo_ft, fontconfig, wayland_client, wayland_cursor, xkb],
|
||||
install: true)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue