mirror of
https://github.com/alecthomas/chroma.git
synced 2025-02-15 13:33:12 +02:00
12 lines
248 B
Plaintext
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)
|