blob: 44bc4863095405f4d4f675eb5e7893e3ac44aff6 (
plain)
1
2
3
4
5
6
7
8
|
# Comment on the first line
project('trivial test', 'c')
#this is a comment
sources = 'trivial.c'
exe = executable('trivialprog', sources : sources)
add_test('runtest', exe) # This is a comment
|