<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/meson.git/docs/markdown/Build-options.md, branch thinlto</title>
<subtitle>github.com: mesonbuild/meson.git
</subtitle>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/meson.git/'/>
<entry>
<title>opts: added docs</title>
<updated>2020-05-26T17:48:26+00:00</updated>
<author>
<name>Daniel Mensinger</name>
<email>daniel@mensinger-ka.de</email>
</author>
<published>2020-05-25T08:25:50+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/meson.git/commit/?id=c9cd235af4b58b169c30fa497f0adae4e69c5f4c'/>
<id>c9cd235af4b58b169c30fa497f0adae4e69c5f4c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>docs: Improve visibility for `.enabled()` etc., add example [skip ci]</title>
<updated>2020-02-19T00:26:46+00:00</updated>
<author>
<name>Niklas Hambüchen</name>
<email>mail@nh2.me</email>
</author>
<published>2020-02-18T20:37:11+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/meson.git/commit/?id=f4b34710d74a9279c4fd3903bd2795bdb3a75a80'/>
<id>f4b34710d74a9279c4fd3903bd2795bdb3a75a80</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix typos found by codespell</title>
<updated>2019-11-06T14:55:30+00:00</updated>
<author>
<name>Wolfgang Stöggl</name>
<email>c72578@yahoo.de</email>
</author>
<published>2019-11-06T13:49:00+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/meson.git/commit/?id=f037e7ef4538b37625c0893d32cad36e72648c8a'/>
<id>f037e7ef4538b37625c0893d32cad36e72648c8a</id>
<content type='text'>
- Typos were found by codespell v1.16.0
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Typos were found by codespell v1.16.0
</pre>
</div>
</content>
</entry>
<entry>
<title>Add link to built-in options page [skip ci]</title>
<updated>2018-11-30T11:00:32+00:00</updated>
<author>
<name>Lzu Tao</name>
<email>taolzu@gmail.com</email>
</author>
<published>2018-11-30T11:00:32+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/meson.git/commit/?id=2a23dd8bb0090ba946e850a3374522b5e43eb595'/>
<id>2a23dd8bb0090ba946e850a3374522b5e43eb595</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add meson version required to use option type (#4562) [skip ci]</title>
<updated>2018-11-29T18:41:06+00:00</updated>
<author>
<name>lzutao</name>
<email>taolzu@gmail.com</email>
</author>
<published>2018-11-29T18:41:06+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/meson.git/commit/?id=0c23e6545711802be279566946983310ca11c1d8'/>
<id>0c23e6545711802be279566946983310ca11c1d8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[skip ci] Typo fix in Build-options.md: "option" -&gt; "description"</title>
<updated>2018-07-31T16:12:18+00:00</updated>
<author>
<name>Tanu Kaskinen</name>
<email>tanuk@iki.fi</email>
</author>
<published>2018-07-30T15:12:51+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/meson.git/commit/?id=a5d0a501fd27a7a68675f5ca6b371ee3c0234016'/>
<id>a5d0a501fd27a7a68675f5ca6b371ee3c0234016</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Options: treat array option -Dopt= and -Dopt=[] as equivalent</title>
<updated>2018-06-29T10:56:25+00:00</updated>
<author>
<name>Dylan Baker</name>
<email>dylan@pnwbakers.com</email>
</author>
<published>2018-06-05T15:33:36+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/meson.git/commit/?id=f3a8f9c34d95d862fb4d12869a7b31cea592561f'/>
<id>f3a8f9c34d95d862fb4d12869a7b31cea592561f</id>
<content type='text'>
Currently the former will be parsed as [''], while the latter is parsed
as [] in python. This makes for some obnoxious special handling
depending on what the user passes. This is even more obnoxious since for
string type arguments this doesn't require special handling.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Currently the former will be parsed as [''], while the latter is parsed
as [] in python. This makes for some obnoxious special handling
depending on what the user passes. This is even more obnoxious since for
string type arguments this doesn't require special handling.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add UserFeatureOption type</title>
<updated>2018-06-18T04:57:32+00:00</updated>
<author>
<name>Xavier Claessens</name>
<email>xavier.claessens@collabora.com</email>
</author>
<published>2018-04-11T14:13:14+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/meson.git/commit/?id=e565945253662ef6e2151241b6686a999b78a43d'/>
<id>e565945253662ef6e2151241b6686a999b78a43d</id>
<content type='text'>
This is a special type of option to be passed to most 'required' keyword
arguments. It adds a 3rd state to the traditional boolean value to cause
those methods to always return not-found even if the dependency could be
found.

Since integrators doesn't want enabled features to be a surprise there
is a global option "auto_features" to enable or disable all
automatic features.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is a special type of option to be passed to most 'required' keyword
arguments. It adds a 3rd state to the traditional boolean value to cause
those methods to always return not-found even if the dependency could be
found.

Since integrators doesn't want enabled features to be a surprise there
is a global option "auto_features" to enable or disable all
automatic features.
</pre>
</div>
</content>
</entry>
<entry>
<title>Visual Studio: Implement startup project</title>
<updated>2018-06-10T20:36:54+00:00</updated>
<author>
<name>Niklas Claesson</name>
<email>niklas.claesson@cosylab.com</email>
</author>
<published>2018-05-20T23:27:57+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/meson.git/commit/?id=14716ea90c5b4c7b8309751196ede734739a8ee0'/>
<id>14716ea90c5b4c7b8309751196ede734739a8ee0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Document how to set options in subprojects</title>
<updated>2018-02-15T22:08:28+00:00</updated>
<author>
<name>Martin Ejdestig</name>
<email>marejde@gmail.com</email>
</author>
<published>2018-02-15T15:57:41+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/meson.git/commit/?id=b06a4901cb7f062e57dcd5b8193271031ca36c62'/>
<id>b06a4901cb7f062e57dcd5b8193271031ca36c62</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
