14 lines
282 B
Meson
14 lines
282 B
Meson
xc_exe = executable('xc',
|
|
sources : [
|
|
'main.cc',
|
|
'emit.cc',
|
|
antlr4.process('xlang.g4'),
|
|
],
|
|
dependencies : [
|
|
antlr4_runtime_dep,
|
|
],
|
|
install : true)
|
|
xc = generator(xc_exe,
|
|
arguments : ['-o', '@OUTPUT@', '@INPUT@'],
|
|
output : '@BASENAME@.ssa')
|