23 lines
462 B
Meson
23 lines
462 B
Meson
gfx_deps = [thread_dep, m_dep]
|
|
gfx_lib = library('rtgfx',
|
|
# Project Sources
|
|
'builtin_objects.h',
|
|
'effect.h',
|
|
'gfx.h',
|
|
'renderer_api.h',
|
|
'render_list.h',
|
|
|
|
'builtin_objects.c',
|
|
'effect.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()
|