rtengine/src/gfx/meson.build
Kevin Trogant 3d0d4169f1 Progress towards rendering with effects
- Added a null renderer to simplify testing
2024-03-08 01:13:10 +01:00

21 lines
424 B
Meson

gfx_deps = [thread_dep, m_dep]
gfx_lib = library('rtgfx',
# Project Sources
'effect.h',
'gfx.h',
'renderer_api.h',
'render_list.h',
'gfx_framegraph.c',
'gfx_main.c',
'render_list.c',
# Contrib Sources
dependencies : gfx_deps,
include_directories : engine_incdir,
link_with : runtime_lib,
c_pch : 'pch/gfx_pch.h',
install : true)
engine_libs += gfx_lib
engine_lib_paths += gfx_lib.full_path()