xlang/bootstrap/meson.build

16 lines
322 B
Meson
Raw Normal View History

xc_exe = executable('xc',
sources : [
'main.cc',
'emit.cc',
2023-01-05 20:12:15 +00:00
'error.cc',
2023-01-06 02:56:33 +00:00
'typecheck.cc',
antlr4.process('xlang.g4'),
],
dependencies : [
antlr4_runtime_dep,
],
install : true)
xc = generator(xc_exe,
arguments : ['-o', '@OUTPUT@', '@INPUT@'],
output : '@BASENAME@.ssa')