gplugin/gplugin

Prep for the 0.33.0 release
v0.33.0
2021-08-03, Gary Kramlich
f04edbdc6e9e
Prep for the 0.33.0 release

Testing Done:
ran `meson dist`

Reviewed at https://reviews.imfreedom.org/r/866/
summary('tcc', get_option('tcc'), section : 'Loader Support', bool_yn : true)
if get_option('tcc')
GPLUGIN_TCC_SOURCES = [
'gplugin-tcc-core.c',
'gplugin-tcc-loader.c',
'gplugin-tcc-plugin.c',
]
GPLUGIN_TCC_HEADERS = [
'gplugin-tcc-loader.h',
'gplugin-tcc-plugin.h',
]
if not compiler.has_header('libtcc.h')
error('libtcc.h not found')
endif
TCC = compiler.find_library('tcc')
gplugin_tcc = shared_library('gplugin-tcc',
GPLUGIN_TCC_SOURCES,
GPLUGIN_TCC_HEADERS,
name_prefix : '',
dependencies : [TCC, gplugin_dep],
install : true,
install_dir : get_option('libdir') / 'gplugin'
)
endif # tcc
subdir('tests')