qulogic/gplugin

Work-around clang-format-9 issue
develop
2020-02-28, Richard Laager
47b11278e9ea
Work-around clang-format-9 issue

I do not know what causes this, but clang-format-9 formats these bits
incorrectly. clang-format-11 formats them correctly, so eventually
this can go away.
if get_option('tcc')
e = executable('test-tcc-loader', 'test-tcc-loader.c',
c_args : [
'-DTCC_LOADER_DIR="@0@"'.format(join_paths(meson.current_build_dir(), '..')),
'-DTCC_PLUGIN_DIR="@0@/plugins"'.format(
meson.current_source_dir()),
],
link_with : gplugin_loader_tests,
dependencies : [GLIB, GOBJECT, TCC, gplugin_dep])
test('TCC Loader', e)
endif # tcc