Skip to content

Commit 3093b63

Browse files
author
github-actions
committed
Update
1 parent c636f61 commit 3093b63

24 files changed

+60
-17
lines changed

Reference-manual_functions.html

+38
Original file line numberDiff line numberDiff line change
@@ -2362,6 +2362,7 @@ <h3 style="margin-top: 0px;" id="signature11">Signature</h3>
23622362
<a href="Reference-manual_functions.html#build_target__lang__pch"><b>&lt;lang&gt;_pch</b></a> : <a href="Reference-manual_elementary_str.html"><ins>str</ins></a> # precompiled header file to use for the given language
23632363
<a href="Reference-manual_functions.html#build_target__lang__shared_args"><b>&lt;lang&gt;_shared_args</b></a> : <a href="Reference-manual_elementary_list.html"><ins>list</ins></a>[<a href="Reference-manual_elementary_str.html"><ins>str</ins></a>] # Arguments that are only passed to a shared library
23642364
<a href="Reference-manual_functions.html#build_target__lang__static_args"><b>&lt;lang&gt;_static_args</b></a> : <a href="Reference-manual_elementary_list.html"><ins>list</ins></a>[<a href="Reference-manual_elementary_str.html"><ins>str</ins></a>] # Arguments that are only passed to a static library
2365+
<a href="Reference-manual_functions.html#build_target_android_exe_type"><b>android_exe_type</b></a> : <a href="Reference-manual_elementary_str.html"><ins>str</ins></a> # Specifies the intended target of the executable
23652366
<a href="Reference-manual_functions.html#build_target_build_by_default"><b>build_by_default</b></a> : <a href="Reference-manual_elementary_bool.html"><ins>bool</ins></a> # Causes, when set to `true`, to have this target be built by default
23662367
<a href="Reference-manual_functions.html#build_target_build_rpath"><b>build_rpath</b></a> : <a href="Reference-manual_elementary_str.html"><ins>str</ins></a> # A string to add to target's rpath definition in the build dir,
23672368
<a href="Reference-manual_functions.html#build_target_d_debug"><b>d_debug</b></a> : <a href="Reference-manual_elementary_list.html"><ins>list</ins></a>[<a href="Reference-manual_elementary_str.html"><ins>str</ins></a>] # The [D version identifiers](https://dlang
@@ -2540,6 +2541,24 @@ <h3 id="arguments11">Arguments</h3>
25402541
<div style="margin: 0px; text-align: center;">
25412542
<p style="margin: 0px;"><em style="color: #5affff;">(since 1.3.0)</em></p>
25422543
</div>
2544+
</td>
2545+
</tr>
2546+
<tr id="build_target_android_exe_type">
2547+
<td style="white-space: nowrap; text-align: center; padding: 6px;"><code class="language-meson">android_exe_type</code></td>
2548+
<td style="white-space: revert; text-align: center; padding: 6px; word-wrap: break-word;"><a href="Reference-manual_elementary_str.html"><ins><code>str</code></ins></a></td>
2549+
<!-- This suboptimal formatting is required to ensure hotdoc correctly generates the HTML -->
2550+
<td style="width: 56%; padding: 6px;">
2551+
<p>Specifies the intended target of the executable. This can either be
2552+
<code>executable</code>, if the intended usecase is to run the executable using
2553+
fork + exec, or <code>application</code> if the executable is supposed to be
2554+
loaded as shared object by the android runtime.</p>
2555+
</td>
2556+
<td style="white-space: nowrap; text-align: center; padding: 6px; width: 0px;">
2557+
<div style="margin: 0px; text-align: center;">
2558+
<p style="margin: 0px;"><em style="color: #5affff;">(since 1.8.0)</em></p>
2559+
<p style="margin: 0px;"><code class="language-meson">default =
2560+
'executable'</code></p>
2561+
</div>
25432562
</td>
25442563
</tr>
25452564
<tr id="build_target_build_by_default">
@@ -5039,6 +5058,7 @@ <h3 style="margin-top: 0px;" id="signature21">Signature</h3>
50395058
# Keyword arguments:
50405059
<a href="Reference-manual_functions.html#executable__lang__args"><b>&lt;lang&gt;_args</b></a> : <a href="Reference-manual_elementary_list.html"><ins>list</ins></a>[<a href="Reference-manual_elementary_str.html"><ins>str</ins></a>] # compiler flags to use for the given language;
50415060
<a href="Reference-manual_functions.html#executable__lang__pch"><b>&lt;lang&gt;_pch</b></a> : <a href="Reference-manual_elementary_str.html"><ins>str</ins></a> # precompiled header file to use for the given language
5061+
<a href="Reference-manual_functions.html#executable_android_exe_type"><b>android_exe_type</b></a> : <a href="Reference-manual_elementary_str.html"><ins>str</ins></a> # Specifies the intended target of the executable
50425062
<a href="Reference-manual_functions.html#executable_build_by_default"><b>build_by_default</b></a> : <a href="Reference-manual_elementary_bool.html"><ins>bool</ins></a> # Causes, when set to `true`, to have this target be built by default
50435063
<a href="Reference-manual_functions.html#executable_build_rpath"><b>build_rpath</b></a> : <a href="Reference-manual_elementary_str.html"><ins>str</ins></a> # A string to add to target's rpath definition in the build dir,
50445064
<a href="Reference-manual_functions.html#executable_d_debug"><b>d_debug</b></a> : <a href="Reference-manual_elementary_list.html"><ins>list</ins></a>[<a href="Reference-manual_elementary_str.html"><ins>str</ins></a>] # The [D version identifiers](https://dlang
@@ -5186,6 +5206,24 @@ <h3 id="arguments20">Arguments</h3>
51865206
</td>
51875207
<td style="white-space: nowrap; text-align: center; padding: 6px; width: 0px;">
51885208
<div style="margin: 0px; text-align: center;">
5209+
</div>
5210+
</td>
5211+
</tr>
5212+
<tr id="executable_android_exe_type">
5213+
<td style="white-space: nowrap; text-align: center; padding: 6px;"><code class="language-meson">android_exe_type</code></td>
5214+
<td style="white-space: revert; text-align: center; padding: 6px; word-wrap: break-word;"><a href="Reference-manual_elementary_str.html"><ins><code>str</code></ins></a></td>
5215+
<!-- This suboptimal formatting is required to ensure hotdoc correctly generates the HTML -->
5216+
<td style="width: 56%; padding: 6px;">
5217+
<p>Specifies the intended target of the executable. This can either be
5218+
<code>executable</code>, if the intended usecase is to run the executable using
5219+
fork + exec, or <code>application</code> if the executable is supposed to be
5220+
loaded as shared object by the android runtime.</p>
5221+
</td>
5222+
<td style="white-space: nowrap; text-align: center; padding: 6px; width: 0px;">
5223+
<div style="margin: 0px; text-align: center;">
5224+
<p style="margin: 0px;"><em style="color: #5affff;">(since 1.8.0)</em></p>
5225+
<p style="margin: 0px;"><code class="language-meson">default =
5226+
'executable'</code></p>
51895227
</div>
51905228
</td>
51915229
</tr>

assets/js/search/Specifies

+1-1
Large diffs are not rendered by default.

assets/js/search/android

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
urls_downloaded_cb({"token":"android","urls":[{"url":"Creating-Linux-binaries.html#adding-dependencies","node_type":"p","page":"Creating Linux binaries","sections":["Creating Linux binaries","Adding dependencies"],"context":{"gi-language":["default"]}},{"url":"Dependencies.html#zlib","node_type":"p","page":"Dependencies","sections":["Dependencies with custom lookup functionality","Zlib"],"context":{"gi-language":["default"]}},{"url":"Reference-manual_functions.html#shared_module","node_type":"p","page":"Functions","sections":["Functions","shared_module()"],"context":{"gi-language":["default"]}},{"url":"Reference-tables.html#operating-system-names","node_type":"table","page":"Reference tables","sections":["Reference tables","Operating system names"],"context":{"gi-language":["default"]}},{"url":"Users.html#list-of-projects-using-meson","node_type":"ul","page":"Users","sections":["List of projects using Meson"],"context":{"gi-language":["default"]}}]});
1+
urls_downloaded_cb({"token":"android","urls":[{"url":"Creating-Linux-binaries.html#adding-dependencies","node_type":"p","page":"Creating Linux binaries","sections":["Creating Linux binaries","Adding dependencies"],"context":{"gi-language":["default"]}},{"url":"Dependencies.html#zlib","node_type":"p","page":"Dependencies","sections":["Dependencies with custom lookup functionality","Zlib"],"context":{"gi-language":["default"]}},{"url":"Reference-manual_functions.html#arguments11","node_type":"table","page":"Functions","sections":["Functions","build_target()","Arguments"],"context":{"gi-language":["default"]}},{"url":"Reference-manual_functions.html#arguments20","node_type":"table","page":"Functions","sections":["Functions","executable()","Arguments"],"context":{"gi-language":["default"]}},{"url":"Reference-manual_functions.html#build_target_android_exe_type","node_type":"p","page":"Functions","sections":["Functions","build_target()","Arguments"],"context":{"gi-language":["default"]}},{"url":"Reference-manual_functions.html#executable_android_exe_type","node_type":"p","page":"Functions","sections":["Functions","executable()","Arguments"],"context":{"gi-language":["default"]}},{"url":"Reference-manual_functions.html#shared_module","node_type":"p","page":"Functions","sections":["Functions","shared_module()"],"context":{"gi-language":["default"]}},{"url":"Reference-tables.html#operating-system-names","node_type":"table","page":"Reference tables","sections":["Reference tables","Operating system names"],"context":{"gi-language":["default"]}},{"url":"Users.html#list-of-projects-using-meson","node_type":"ul","page":"Users","sections":["List of projects using Meson"],"context":{"gi-language":["default"]}}]});

assets/js/search/android_exe_type

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
urls_downloaded_cb({"token":"android_exe_type","urls":[{"url":"Reference-manual_functions.html#arguments11","node_type":"table","page":"Functions","sections":["Functions","build_target()","Arguments"],"context":{"gi-language":["default"]}},{"url":"Reference-manual_functions.html#arguments20","node_type":"table","page":"Functions","sections":["Functions","executable()","Arguments"],"context":{"gi-language":["default"]}}]});

0 commit comments

Comments
 (0)