WIP: compiles but completely broken

AGG files imported from AGG repository, sdl-testing branch.

the pixfmt_bgra32_lcd is just implemented and is not tested.
This commit is contained in:
Francesco Abbate
2020-05-28 12:15:24 +02:00
parent 79487074c0
commit 23a080ca45
11 changed files with 2127 additions and 2 deletions
+3 -1
View File
@@ -1,4 +1,4 @@
project('lite', 'c', version: '1.05', default_options : ['c_std=gnu11'])
project('lite', 'c', 'cpp', version: '1.05', default_options : ['c_std=gnu11', 'cpp_std=c++03'])
cc = meson.get_compiler('c')
libm = cc.find_library('m', required : false)
@@ -6,6 +6,8 @@ libdl = cc.find_library('dl', required : false)
lua_dep = dependency('lua')
sdl_dep = dependency('sdl2', method: 'config-tool')
libagg_dep = dependency('libagg')
freetype_dep = dependency('freetype2')
stb_truetype_dep = dependency('stb_truetype')
lite_include = include_directories('src')