1
0
mirror of https://github.com/alecthomas/chroma.git synced 2025-02-15 13:33:12 +02:00
chroma/lexers/testdata/meson.actual
Koki Fukuda f09329ae62 Add lexer for Meson build system
Ported pygments' lexer using pygments2chroma.py.
2021-07-23 07:31:47 +10:00

12 lines
248 B
Plaintext

project('foo', 'cpp', default_options : ['warning_level=3'])
required_modules = ['gnome']
foreach mod in required_modules
import(mod)
endforeach
# Comment
zlib_dep = dependency('zlib')
executable('''bar''', 'main.cc', dependencies : zlib_dep)