rtengine/tests/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

12 lines
309 B
Meson

test_link_libs = [runtime_lib, gfx_lib]
if get_option('default_library') == 'static'
test_link_libs += null_renderer_lib
endif
rttest_exe = executable('rttest',
'rttest.c',
link_with : test_link_libs,
include_directories : engine_incdir,
win_subsystem : 'console')
test('runtime test', rttest_exe)