File indexing completed on 2024-05-12 04:02:08

0001 <!DOCTYPE html>
0002 <html><head>
0003 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
0004 <title>meson.build</title>
0005 <meta name="generator" content="KF5::SyntaxHighlighting - Definition (Meson) - Theme (Breeze Light)"/>
0006 </head><body style="background-color:#ffffff;color:#1f1c1b"><pre>
0007 <span style="color:#898887"># Unit test for Meson syntax highlight. License: LGPL</span>
0008 <span style="color:#0057ae">project</span>(<span style="color:#bf0303">'projectname'</span>, <span style="color:#bf0303">'cpp'</span>)
0009 
0010 
0011 
0012 sourcefiles <span style="font-weight:bold">=</span> [<span style="color:#bf0303">'a.cpp'</span>, <span style="color:#bf0303">'b.cpp'</span>]
0013 
0014 <span style="font-weight:bold">foreach</span> sourcefile : sourcefiles
0015     <span style="color:#0057ae">message</span>(<span style="color:#bf0303">'this is a source file: '</span> <span style="font-weight:bold">+</span> sourcefile)
0016 <span style="font-weight:bold">endforeach</span>
0017 
0018 x<span style="font-weight:bold">=</span><span style="color:#b08000">1</span>
0019 <span style="font-weight:bold">if</span> x<span style="font-weight:bold">+</span><span style="color:#b08000">1</span> <span style="font-weight:bold">==</span> <span style="color:#b08000">2</span> <span style="font-weight:bold">and</span> x<span style="font-weight:bold">-</span><span style="color:#b08000">1</span> <span style="font-weight:bold">==</span> <span style="color:#b08000">0</span>
0020     <span style="color:#0057ae">message</span>(<span style="color:#bf0303">'I can work in this universe!'</span>)
0021 <span style="font-weight:bold">endif</span>
0022 
0023 subprojectresult <span style="font-weight:bold">=</span> <span style="color:#0057ae">subproject</span>(<span style="color:#bf0303">'mysubprojectdir'</span>)
0024 
0025 mysharedlib <span style="font-weight:bold">=</span> <span style="color:#0057ae">shared_library</span>(<span style="color:#bf0303">'libraryname'</span>, sourcefiles, linkwith: subprojectresult.staticlib)
0026 
0027 <span style="color:#0057ae">executable</span>(<span style="color:#bf0303">'myprogram'</span>, [<span style="color:#bf0303">'test.cpp'</span>], linkwith: mysharedlib)
0028 
0029 <span style="color:#0057ae">message</span>(<span style="color:#0057ae">meson</span>.<span style="color:#0057ae">source_root</span>())
0030 <span style="color:#0057ae">message</span>(unknown.source_root())
0031 <span style="color:#0057ae">message</span>(<span style="color:#bf0303">'str'</span>.<span style="color:#0057ae">join</span>(l))
0032 
0033 <span style="color:#0057ae">message</span>(<span style="color:#bf0303">'</span>
0034 <span style="color:#924c9d">\a</span>
0035 <span style="color:#924c9d">\x2</span>
0036 <span style="color:#924c9d">\x12</span>
0037 <span style="color:#924c9d">\x12</span>
0038 <span style="color:#924c9d">\x12</span><span style="color:#bf0303">3</span>
0039 <span style="color:#924c9d">\1</span>
0040 <span style="color:#924c9d">\12</span>
0041 <span style="color:#924c9d">\123</span>
0042 <span style="color:#924c9d">\123</span><span style="color:#bf0303">4</span>
0043 <span style="color:#bf0303">'</span>)
0044 </pre></body></html>