Initial working version of agg font rendering test

This commit is contained in:
Francesco Abbate
2020-05-29 18:41:55 +02:00
parent a7904eba3b
commit f77261afa4
2 changed files with 48 additions and 50 deletions
+7 -12
View File
@@ -1,18 +1,13 @@
lite_sources = [
'api/api.c',
'api/renderer.c',
'api/renderer_font.c',
'api/system.c',
'renderer.c',
'agg_font_freetype.cpp',
'font_render_capi.cpp',
'rencache.c',
'main.c',
]
executable('stb-font-render-test',
'stb_font_render_test.c',
include_directories: lite_include,
dependencies: [sdl_dep, stb_truetype_dep, libm, libdl],
install: false,
)
executable('agg-font-render-test',
['agg_font_render_test.cpp', '../src/agg_font_freetype.cpp'],
include_directories: lite_include,
dependencies: [sdl_dep, libagg_dep, freetype_dep, libm, libdl],
install: false,
)