The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
680 B
47 lines
680 B
# SPDX-FileCopyrightText: Stone Tickle <lattis@mochiro.moe> |
|
# This file is used from muon sources, with permission |
|
|
|
project('a') |
|
|
|
if ( |
|
# comment |
|
false # in a weird |
|
) # place! # test |
|
else |
|
endif # test2 |
|
|
|
foreach a : ( |
|
# test 7 |
|
b # test 4 |
|
) # test 6 # test 3 |
|
endforeach |
|
# test 5 |
|
|
|
a = [ |
|
1, |
|
# inner |
|
2, # between comma |
|
# between comma 2 |
|
] # trailing |
|
|
|
( |
|
# hello |
|
a() |
|
) |
|
( |
|
# comment 1 |
|
# comment 2 |
|
# comment 3 |
|
a # comment 4 |
|
# comment 5 |
|
# comment 6 |
|
= ( |
|
# comment 7 |
|
1 # comment 8 |
|
# comment 9 |
|
+ 2 # comment 10 |
|
) # comment 11 |
|
# comment 12 |
|
) # comment 13 |
|
|
|
# trailing comment
|
|
|