rtengine/src/gfx/meson.build
Kevin Trogant 41fe5426b8 Start work on effect files
Extends pipeline files
2024-02-29 16:43:27 +01:00

20 lines
405 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',
# 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()