diff options
| author | ruki <[email protected]> | 2017-08-27 21:44:26 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2017-08-27 21:44:26 +0800 |
| commit | 82656cd001b02abd7f1a4b5ba6dcd89c50899d46 (patch) | |
| tree | 306c4acfc3e7d123a6c742d531aa02fbd7201132 | |
| parent | d3f38de4ea68ca59a74bb8a96ea3ffe4db2563f6 (diff) | |
update description and index
394 files changed, 616 insertions, 396 deletions
@@ -1,4 +1,4 @@ -The Make-like Build Utility based on Lua +A cross-platform build utility based on Lua Copyright 2015-2017 The TBOOX Open Source Group This product includes software developed by The TBOOX Open Source Group (http://www.tboox.org/). @@ -34,7 +34,7 @@ </a> </div> - <p>A make-like build utility based on Lua</p> + <p>A cross-platform build utility based on Lua</p> </div> ## Introduction ([中文](/README_zh.md)) diff --git a/core/src/sv/README.md b/core/src/sv/README.md index e55d9718d..f96ee54aa 100644 --- a/core/src/sv/README.md +++ b/core/src/sv/README.md @@ -34,7 +34,7 @@ See the [UNLICENSE](https://github.com/uael/sv/blob/master/UNLICENSE) file. ### xmake -[Install xmake build system (A make-like build utility based on Lua)](http://xmake.io) +[Install xmake build system (A cross-platform build utility based on Lua)](http://xmake.io) ```bash $ xmake diff --git a/docs/README.md b/docs/README.md index 372cdad34..a8552c9c9 100644 --- a/docs/README.md +++ b/docs/README.md @@ -39,7 +39,7 @@ search: en </a> </div> - <p>A make-like build utility based on Lua</p> + <p>A cross-platform build utility based on Lua</p> </div> </p> diff --git a/docs/cn/index.html b/docs/cn/index.html index 252376f9e..4b0cd2dec 100644 --- a/docs/cn/index.html +++ b/docs/cn/index.html @@ -103,6 +103,7 @@ <li>Actions</li> <li>Options</li> <li>Plugins</li> + <li>Modules</li> <li>Templates</li> </ul> @@ -143,11 +144,66 @@ <p>请到插件仓库进行下载安装: <a href="https://github.com/tboox/xmake-plugins">xmake-plugins</a>.</p> -<h2 id="section-10">使用演示</h2> +<h2 id="section-10">更多例子</h2> + +<p>Debug和Release模式:</p> + +<div class="language-lua highlighter-rouge"><pre class="highlight"><code><span class="k">if</span> <span class="n">is_mode</span><span class="p">(</span><span class="s2">"debug"</span><span class="p">)</span> <span class="k">then</span> + <span class="n">set_symbols</span><span class="p">(</span><span class="s2">"debug"</span><span class="p">)</span> + <span class="n">set_optimize</span><span class="p">(</span><span class="s2">"none"</span><span class="p">)</span> +<span class="k">end</span> + +<span class="k">if</span> <span class="n">is_mode</span><span class="p">(</span><span class="s2">"release"</span><span class="p">)</span> <span class="k">then</span> + <span class="n">set_symbols</span><span class="p">(</span><span class="s2">"hidden"</span><span class="p">)</span> + <span class="n">set_optimize</span><span class="p">(</span><span class="s2">"fastest"</span><span class="p">)</span> + <span class="n">set_strip</span><span class="p">(</span><span class="s2">"all"</span><span class="p">)</span> +<span class="k">end</span> + +<span class="n">target</span><span class="p">(</span><span class="s2">"console"</span><span class="p">)</span> + <span class="n">set_kind</span><span class="p">(</span><span class="s2">"binary"</span><span class="p">)</span> + <span class="n">add_files</span><span class="p">(</span><span class="s2">"src/*.c"</span><span class="p">)</span> +</code></pre> +</div> + +<p>自定义脚本:</p> + +<div class="language-lua highlighter-rouge"><pre class="highlight"><code><span class="n">target</span><span class="p">(</span><span class="s2">"test"</span><span class="p">)</span> + <span class="n">set_kind</span><span class="p">(</span><span class="s2">"static"</span><span class="p">)</span> + <span class="n">add_files</span><span class="p">(</span><span class="s2">"src/*.cpp"</span><span class="p">)</span> + <span class="n">after_build</span><span class="p">(</span><span class="k">function</span> <span class="p">(</span><span class="n">target</span><span class="p">)</span> + <span class="nb">print</span><span class="p">(</span><span class="s2">"build %s ok!"</span><span class="p">,</span> <span class="n">target</span><span class="p">:</span><span class="n">targetfile</span><span class="p">())</span> + <span class="k">end</span><span class="p">)</span> +</code></pre> +</div> + +<p>使用扩展模块:</p> + +<div class="language-lua highlighter-rouge"><pre class="highlight"><code><span class="n">target</span><span class="p">(</span><span class="s2">"test"</span><span class="p">)</span> + <span class="n">set_kind</span><span class="p">(</span><span class="s2">"shared"</span><span class="p">)</span> + <span class="n">add_files</span><span class="p">(</span><span class="s2">"src/*.c"</span><span class="p">)</span> + <span class="n">on_load</span><span class="p">(</span><span class="k">function</span> <span class="p">(</span><span class="n">target</span><span class="p">)</span> + <span class="n">import</span><span class="p">(</span><span class="s2">"lib.detect.find_package"</span><span class="p">)</span> + <span class="n">target</span><span class="p">:</span><span class="n">add</span><span class="p">(</span><span class="n">find_package</span><span class="p">(</span><span class="s2">"zlib"</span><span class="p">))</span> + <span class="k">end</span><span class="p">)</span> +</code></pre> +</div> + +<h2 id="section-11">项目例子</h2> + +<p>一些使用xmake的项目:</p> + +<ul> + <li><a href="https://github.com/tboox/tbox">tbox</a></li> + <li><a href="https://github.com/tboox/gbox">gbox</a></li> + <li><a href="https://github.com/tboox/vm86">vm86</a></li> + <li><a href="https://github.com/vm86/xmake/wiki/%E4%BD%BF%E7%94%A8xmake%E7%9A%84%E5%BC%80%E6%BA%90%E5%BA%93">更多</a></li> +</ul> + +<h2 id="section-12">演示视频</h2> <p><a href="https://asciinema.org/a/133693"><img src="https://asciinema.org/a/133693.png" alt="asciicast" /></a></p> -<h2 id="section-11">联系方式</h2> +<h2 id="section-13">联系方式</h2> <ul> <li>邮箱:<a href="mailto:[email protected]">[email protected]</a></li> diff --git a/docs/landing.html b/docs/landing.html index a01ecdb21..68c915aad 100644 --- a/docs/landing.html +++ b/docs/landing.html @@ -103,6 +103,7 @@ <li>Actions</li> <li>Options</li> <li>Plugins</li> + <li>Modules</li> <li>Templates</li> </ul> @@ -143,7 +144,62 @@ <p>Please download and install from the plugins repository <a href="https://github.com/tboox/xmake-plugins">xmake-plugins</a>.</p> -<h2 id="examples">Examples</h2> +<h2 id="more-examples">More Examples</h2> + +<p>Debug and release modes:</p> + +<div class="language-lua highlighter-rouge"><pre class="highlight"><code><span class="k">if</span> <span class="n">is_mode</span><span class="p">(</span><span class="s2">"debug"</span><span class="p">)</span> <span class="k">then</span> + <span class="n">set_symbols</span><span class="p">(</span><span class="s2">"debug"</span><span class="p">)</span> + <span class="n">set_optimize</span><span class="p">(</span><span class="s2">"none"</span><span class="p">)</span> +<span class="k">end</span> + +<span class="k">if</span> <span class="n">is_mode</span><span class="p">(</span><span class="s2">"release"</span><span class="p">)</span> <span class="k">then</span> + <span class="n">set_symbols</span><span class="p">(</span><span class="s2">"hidden"</span><span class="p">)</span> + <span class="n">set_optimize</span><span class="p">(</span><span class="s2">"fastest"</span><span class="p">)</span> + <span class="n">set_strip</span><span class="p">(</span><span class="s2">"all"</span><span class="p">)</span> +<span class="k">end</span> + +<span class="n">target</span><span class="p">(</span><span class="s2">"console"</span><span class="p">)</span> + <span class="n">set_kind</span><span class="p">(</span><span class="s2">"binary"</span><span class="p">)</span> + <span class="n">add_files</span><span class="p">(</span><span class="s2">"src/*.c"</span><span class="p">)</span> +</code></pre> +</div> + +<p>Custom script:</p> + +<div class="language-lua highlighter-rouge"><pre class="highlight"><code><span class="n">target</span><span class="p">(</span><span class="s2">"test"</span><span class="p">)</span> + <span class="n">set_kind</span><span class="p">(</span><span class="s2">"static"</span><span class="p">)</span> + <span class="n">add_files</span><span class="p">(</span><span class="s2">"src/*.cpp"</span><span class="p">)</span> + <span class="n">after_build</span><span class="p">(</span><span class="k">function</span> <span class="p">(</span><span class="n">target</span><span class="p">)</span> + <span class="nb">print</span><span class="p">(</span><span class="s2">"build %s ok!"</span><span class="p">,</span> <span class="n">target</span><span class="p">:</span><span class="n">targetfile</span><span class="p">())</span> + <span class="k">end</span><span class="p">)</span> +</code></pre> +</div> + +<p>Extension Modules:</p> + +<div class="language-lua highlighter-rouge"><pre class="highlight"><code><span class="n">target</span><span class="p">(</span><span class="s2">"test"</span><span class="p">)</span> + <span class="n">set_kind</span><span class="p">(</span><span class="s2">"shared"</span><span class="p">)</span> + <span class="n">add_files</span><span class="p">(</span><span class="s2">"src/*.c"</span><span class="p">)</span> + <span class="n">on_load</span><span class="p">(</span><span class="k">function</span> <span class="p">(</span><span class="n">target</span><span class="p">)</span> + <span class="n">import</span><span class="p">(</span><span class="s2">"lib.detect.find_package"</span><span class="p">)</span> + <span class="n">target</span><span class="p">:</span><span class="n">add</span><span class="p">(</span><span class="n">find_package</span><span class="p">(</span><span class="s2">"zlib"</span><span class="p">))</span> + <span class="k">end</span><span class="p">)</span> +</code></pre> +</div> + +<h2 id="project-examples">Project Examples</h2> + +<p>Some projects using xmake:</p> + +<ul> + <li><a href="https://github.com/tboox/tbox">tbox</a></li> + <li><a href="https://github.com/tboox/gbox">gbox</a></li> + <li><a href="https://github.com/tboox/vm86">vm86</a></li> + <li><a href="https://github.com/tboox/xmake/wiki/xmake-projects">more</a></li> +</ul> + +<h2 id="example-video">Example Video</h2> <p><a href="https://asciinema.org/a/133693"><img src="https://asciinema.org/a/133693.png" alt="asciicast" /></a></p> diff --git a/docs/landing/index.cn.md b/docs/landing/index.cn.md index 91b04379a..86c9ad982 100644 --- a/docs/landing/index.cn.md +++ b/docs/landing/index.cn.md @@ -56,6 +56,7 @@ $ xmake run -d console * Actions * Options * Plugins +* Modules * Templates ## 支持平台 @@ -89,7 +90,60 @@ $ xmake run -d console 请到插件仓库进行下载安装: [xmake-plugins](https://github.com/tboox/xmake-plugins). -## 使用演示 +## 更多例子 + +Debug和Release模式: + +```lua +if is_mode("debug") then + set_symbols("debug") + set_optimize("none") +end + +if is_mode("release") then + set_symbols("hidden") + set_optimize("fastest") + set_strip("all") +end + +target("console") + set_kind("binary") + add_files("src/*.c") +``` + +自定义脚本: + +```lua +target("test") + set_kind("static") + add_files("src/*.cpp") + after_build(function (target) + print("build %s ok!", target:targetfile()) + end) +``` + +使用扩展模块: + +```lua +target("test") + set_kind("shared") + add_files("src/*.c") + on_load(function (target) + import("lib.detect.find_package") + target:add(find_package("zlib")) + end) +``` + +## 项目例子 + +一些使用xmake的项目: + +* [tbox](https://github.com/tboox/tbox) +* [gbox](https://github.com/tboox/gbox) +* [vm86](https://github.com/tboox/vm86) +* [更多](https://github.com/vm86/xmake/wiki/%E4%BD%BF%E7%94%A8xmake%E7%9A%84%E5%BC%80%E6%BA%90%E5%BA%93) + +## 演示视频 [](https://asciinema.org/a/133693) diff --git a/docs/landing/index.md b/docs/landing/index.md index a10779237..3c55aa14a 100644 --- a/docs/landing/index.md +++ b/docs/landing/index.md @@ -56,6 +56,7 @@ $ xmake run -d console * Actions * Options * Plugins +* Modules * Templates ## Support platforms @@ -89,7 +90,60 @@ $ xmake run -d console Please download and install from the plugins repository [xmake-plugins](https://github.com/tboox/xmake-plugins). -## Examples +## More Examples + +Debug and release modes: + +```lua +if is_mode("debug") then + set_symbols("debug") + set_optimize("none") +end + +if is_mode("release") then + set_symbols("hidden") + set_optimize("fastest") + set_strip("all") +end + +target("console") + set_kind("binary") + add_files("src/*.c") +``` + +Custom script: + +```lua +target("test") + set_kind("static") + add_files("src/*.cpp") + after_build(function (target) + print("build %s ok!", target:targetfile()) + end) +``` + +Extension Modules: + +```lua +target("test") + set_kind("shared") + add_files("src/*.c") + on_load(function (target) + import("lib.detect.find_package") + target:add(find_package("zlib")) + end) +``` + +## Project Examples + +Some projects using xmake: + +* [tbox](https://github.com/tboox/tbox) +* [gbox](https://github.com/tboox/gbox) +* [vm86](https://github.com/tboox/vm86) +* [more](https://github.com/tboox/xmake/wiki/xmake-projects) + +## Example Video [](https://asciinema.org/a/133693) diff --git a/xmake/actions/build/builder.lua b/xmake/actions/build/builder.lua index ebe2efc72..d28ce3617 100644 --- a/xmake/actions/build/builder.lua +++ b/xmake/actions/build/builder.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/actions/build/kinds/binary.lua b/xmake/actions/build/kinds/binary.lua index ac933812d..58d0a920f 100644 --- a/xmake/actions/build/kinds/binary.lua +++ b/xmake/actions/build/kinds/binary.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/actions/build/kinds/object.lua b/xmake/actions/build/kinds/object.lua index 7ed363c38..174b8f27c 100644 --- a/xmake/actions/build/kinds/object.lua +++ b/xmake/actions/build/kinds/object.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/actions/build/kinds/shared.lua b/xmake/actions/build/kinds/shared.lua index fac2184bb..e7281da75 100644 --- a/xmake/actions/build/kinds/shared.lua +++ b/xmake/actions/build/kinds/shared.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/actions/build/kinds/static.lua b/xmake/actions/build/kinds/static.lua index e4d7c8553..fe1f45c36 100644 --- a/xmake/actions/build/kinds/static.lua +++ b/xmake/actions/build/kinds/static.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/actions/build/main.lua b/xmake/actions/build/main.lua index 1578b9e8d..6206e5e4e 100644 --- a/xmake/actions/build/main.lua +++ b/xmake/actions/build/main.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/actions/build/xmake.lua b/xmake/actions/build/xmake.lua index dc76f6457..81174c469 100644 --- a/xmake/actions/build/xmake.lua +++ b/xmake/actions/build/xmake.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/actions/clean/main.lua b/xmake/actions/clean/main.lua index e11a35574..3858e8adc 100644 --- a/xmake/actions/clean/main.lua +++ b/xmake/actions/clean/main.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/actions/clean/xmake.lua b/xmake/actions/clean/xmake.lua index 72e4e2058..a82890b34 100644 --- a/xmake/actions/clean/xmake.lua +++ b/xmake/actions/clean/xmake.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/actions/config/configheader.lua b/xmake/actions/config/configheader.lua index 60d41ec70..9e39eee9d 100644 --- a/xmake/actions/config/configheader.lua +++ b/xmake/actions/config/configheader.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/actions/config/main.lua b/xmake/actions/config/main.lua index db530e730..054433e89 100644 --- a/xmake/actions/config/main.lua +++ b/xmake/actions/config/main.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/actions/config/scanner.lua b/xmake/actions/config/scanner.lua index 0776968b5..c66b2a917 100644 --- a/xmake/actions/config/scanner.lua +++ b/xmake/actions/config/scanner.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/actions/config/xmake.lua b/xmake/actions/config/xmake.lua index 2f05ee183..0fa00d358 100644 --- a/xmake/actions/config/xmake.lua +++ b/xmake/actions/config/xmake.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/actions/create/main.lua b/xmake/actions/create/main.lua index 29eb8acfd..6a031c82c 100644 --- a/xmake/actions/create/main.lua +++ b/xmake/actions/create/main.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/actions/create/xmake.lua b/xmake/actions/create/xmake.lua index f7aa5fdd6..d1a9e7f84 100644 --- a/xmake/actions/create/xmake.lua +++ b/xmake/actions/create/xmake.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/actions/global/main.lua b/xmake/actions/global/main.lua index 5bd848c74..f3915b503 100644 --- a/xmake/actions/global/main.lua +++ b/xmake/actions/global/main.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/actions/global/xmake.lua b/xmake/actions/global/xmake.lua index 67058a4c0..fc8ea4d02 100644 --- a/xmake/actions/global/xmake.lua +++ b/xmake/actions/global/xmake.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/actions/install/install.lua b/xmake/actions/install/install.lua index b96ab5943..357d2ec78 100644 --- a/xmake/actions/install/install.lua +++ b/xmake/actions/install/install.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/actions/install/install_admin.lua b/xmake/actions/install/install_admin.lua index 7028e5c09..ff73d7d5a 100644 --- a/xmake/actions/install/install_admin.lua +++ b/xmake/actions/install/install_admin.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/actions/install/main.lua b/xmake/actions/install/main.lua index efee4e2ba..2130b8b2c 100644 --- a/xmake/actions/install/main.lua +++ b/xmake/actions/install/main.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/actions/install/xmake.lua b/xmake/actions/install/xmake.lua index 4a737d010..2d137498d 100644 --- a/xmake/actions/install/xmake.lua +++ b/xmake/actions/install/xmake.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/actions/package/main.lua b/xmake/actions/package/main.lua index 0823d6924..17c51526a 100644 --- a/xmake/actions/package/main.lua +++ b/xmake/actions/package/main.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/actions/package/xmake.lua b/xmake/actions/package/xmake.lua index fa4fc4402..860cefa57 100644 --- a/xmake/actions/package/xmake.lua +++ b/xmake/actions/package/xmake.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/actions/require/action/build.lua b/xmake/actions/require/action/build.lua index 0ae19a44c..8c2f7ddb4 100644 --- a/xmake/actions/require/action/build.lua +++ b/xmake/actions/require/action/build.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/actions/require/clear.lua b/xmake/actions/require/clear.lua index 169723ef3..c9207a63b 100644 --- a/xmake/actions/require/clear.lua +++ b/xmake/actions/require/clear.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/actions/require/environment.lua b/xmake/actions/require/environment.lua index 937ede435..79848387d 100644 --- a/xmake/actions/require/environment.lua +++ b/xmake/actions/require/environment.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/actions/require/info.lua b/xmake/actions/require/info.lua index 1e5d95a80..8653cbca3 100644 --- a/xmake/actions/require/info.lua +++ b/xmake/actions/require/info.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/actions/require/install.lua b/xmake/actions/require/install.lua index aa4194dde..4ea72fdad 100644 --- a/xmake/actions/require/install.lua +++ b/xmake/actions/require/install.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/actions/require/list.lua b/xmake/actions/require/list.lua index 056fdab16..119e6866c 100644 --- a/xmake/actions/require/list.lua +++ b/xmake/actions/require/list.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/actions/require/main.lua b/xmake/actions/require/main.lua index 23fce2766..1190460f6 100644 --- a/xmake/actions/require/main.lua +++ b/xmake/actions/require/main.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/actions/require/package.lua b/xmake/actions/require/package.lua index 6b401ab73..09346b64b 100644 --- a/xmake/actions/require/package.lua +++ b/xmake/actions/require/package.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/actions/require/repository.lua b/xmake/actions/require/repository.lua index 5576b4103..47953c513 100644 --- a/xmake/actions/require/repository.lua +++ b/xmake/actions/require/repository.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/actions/require/search.lua b/xmake/actions/require/search.lua index 569f99115..11e5a6225 100644 --- a/xmake/actions/require/search.lua +++ b/xmake/actions/require/search.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/actions/require/xmake.lua b/xmake/actions/require/xmake.lua index 6c5b7cacd..3dbe1b6f9 100644 --- a/xmake/actions/require/xmake.lua +++ b/xmake/actions/require/xmake.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/actions/run/main.lua b/xmake/actions/run/main.lua index 76cafc3f3..e80072347 100644 --- a/xmake/actions/run/main.lua +++ b/xmake/actions/run/main.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/actions/run/xmake.lua b/xmake/actions/run/xmake.lua index 13d19a283..102cf0190 100644 --- a/xmake/actions/run/xmake.lua +++ b/xmake/actions/run/xmake.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/actions/uninstall/main.lua b/xmake/actions/uninstall/main.lua index cc9e09d10..0e0707132 100644 --- a/xmake/actions/uninstall/main.lua +++ b/xmake/actions/uninstall/main.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/actions/uninstall/uninstall.lua b/xmake/actions/uninstall/uninstall.lua index ae6ca9706..a4ef331e8 100644 --- a/xmake/actions/uninstall/uninstall.lua +++ b/xmake/actions/uninstall/uninstall.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/actions/uninstall/uninstall_admin.lua b/xmake/actions/uninstall/uninstall_admin.lua index a8ac07468..f8e5c5d95 100644 --- a/xmake/actions/uninstall/uninstall_admin.lua +++ b/xmake/actions/uninstall/uninstall_admin.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/actions/uninstall/xmake.lua b/xmake/actions/uninstall/xmake.lua index 300f27321..400e7ffa5 100644 --- a/xmake/actions/uninstall/xmake.lua +++ b/xmake/actions/uninstall/xmake.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/_xmake_main.lua b/xmake/core/_xmake_main.lua index 58af78d66..e9a23f491 100644 --- a/xmake/core/_xmake_main.lua +++ b/xmake/core/_xmake_main.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/base/colors.lua b/xmake/core/base/colors.lua index 9fe7790ae..eb7295ea4 100644 --- a/xmake/core/base/colors.lua +++ b/xmake/core/base/colors.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/base/coroutine.lua b/xmake/core/base/coroutine.lua index db2d36372..e012db923 100644 --- a/xmake/core/base/coroutine.lua +++ b/xmake/core/base/coroutine.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/base/deprecated.lua b/xmake/core/base/deprecated.lua index bfb7c0798..6cfb35fa8 100644 --- a/xmake/core/base/deprecated.lua +++ b/xmake/core/base/deprecated.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/base/deprecated/interpreter.lua b/xmake/core/base/deprecated/interpreter.lua index 206551c88..a452342e0 100644 --- a/xmake/core/base/deprecated/interpreter.lua +++ b/xmake/core/base/deprecated/interpreter.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/base/emoji.lua b/xmake/core/base/emoji.lua index 7bb2c8079..436df2e21 100644 --- a/xmake/core/base/emoji.lua +++ b/xmake/core/base/emoji.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/base/filter.lua b/xmake/core/base/filter.lua index 9dd146ac6..878b7dfe7 100644 --- a/xmake/core/base/filter.lua +++ b/xmake/core/base/filter.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/base/global.lua b/xmake/core/base/global.lua index 0bced098f..1699a06e9 100644 --- a/xmake/core/base/global.lua +++ b/xmake/core/base/global.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/base/interpreter.lua b/xmake/core/base/interpreter.lua index b92ecd52e..8589e8a1e 100644 --- a/xmake/core/base/interpreter.lua +++ b/xmake/core/base/interpreter.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/base/io.lua b/xmake/core/base/io.lua index 2d59051c7..bf794da17 100644 --- a/xmake/core/base/io.lua +++ b/xmake/core/base/io.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/base/option.lua b/xmake/core/base/option.lua index c2833d9ad..7f3ef2ad8 100644 --- a/xmake/core/base/option.lua +++ b/xmake/core/base/option.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/base/os.lua b/xmake/core/base/os.lua index 359ff24cb..6d4c4a96e 100644 --- a/xmake/core/base/os.lua +++ b/xmake/core/base/os.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/base/path.lua b/xmake/core/base/path.lua index 07c5a72c6..a76bd4525 100644 --- a/xmake/core/base/path.lua +++ b/xmake/core/base/path.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/base/privilege.lua b/xmake/core/base/privilege.lua index c6b7bb0c2..b53876713 100644 --- a/xmake/core/base/privilege.lua +++ b/xmake/core/base/privilege.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/base/process.lua b/xmake/core/base/process.lua index 297b8f696..785c044ad 100644 --- a/xmake/core/base/process.lua +++ b/xmake/core/base/process.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/base/profiler.lua b/xmake/core/base/profiler.lua index e8aeab18c..ee2ab9fb5 100644 --- a/xmake/core/base/profiler.lua +++ b/xmake/core/base/profiler.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/base/string.lua b/xmake/core/base/string.lua index 97945851e..0f65232e9 100644 --- a/xmake/core/base/string.lua +++ b/xmake/core/base/string.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/base/table.lua b/xmake/core/base/table.lua index d1251ea1a..410b4a329 100644 --- a/xmake/core/base/table.lua +++ b/xmake/core/base/table.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/base/task.lua b/xmake/core/base/task.lua index 7a12c69af..757b1fcf3 100644 --- a/xmake/core/base/task.lua +++ b/xmake/core/base/task.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/base/utils.lua b/xmake/core/base/utils.lua index 5ab310004..772d1f162 100644 --- a/xmake/core/base/utils.lua +++ b/xmake/core/base/utils.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/language/language.lua b/xmake/core/language/language.lua index 5c661782e..d19ab88d6 100644 --- a/xmake/core/language/language.lua +++ b/xmake/core/language/language.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/language/menu.lua b/xmake/core/language/menu.lua index f508df0bc..71c7fedc1 100644 --- a/xmake/core/language/menu.lua +++ b/xmake/core/language/menu.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/main.lua b/xmake/core/main.lua index 08d22bc3a..b9e0749ba 100644 --- a/xmake/core/main.lua +++ b/xmake/core/main.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file @@ -43,7 +43,7 @@ local package = require("package/package") local menu = { -- title - title = "${bright}xmake v" .. xmake._VERSION .. ", A make-like build utility based on Lua${clear}" + title = "${bright}xmake v" .. xmake._VERSION .. ", A cross-platform build utility based on Lua${clear}" -- copyright , copyright = "Copyright (C) 2015-2017 Ruki Wang, ${underline}tboox.org${clear}, ${underline}xmake.io${clear}\nCopyright (C) 2005-2015 Mike Pall, ${underline}luajit.org${clear}" diff --git a/xmake/core/package/package.lua b/xmake/core/package/package.lua index e5ca87b84..a79a7753c 100644 --- a/xmake/core/package/package.lua +++ b/xmake/core/package/package.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/package/repository.lua b/xmake/core/package/repository.lua index 6a4bcc9f0..41feaa5a8 100644 --- a/xmake/core/package/repository.lua +++ b/xmake/core/package/repository.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/platform/environment.lua b/xmake/core/platform/environment.lua index 237a3b6eb..f91f5ccc5 100644 --- a/xmake/core/platform/environment.lua +++ b/xmake/core/platform/environment.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/platform/menu.lua b/xmake/core/platform/menu.lua index e9520b4f5..144a9bf05 100644 --- a/xmake/core/platform/menu.lua +++ b/xmake/core/platform/menu.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/platform/platform.lua b/xmake/core/platform/platform.lua index de11e0358..82ac2eab9 100644 --- a/xmake/core/platform/platform.lua +++ b/xmake/core/platform/platform.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/project/cache.lua b/xmake/core/project/cache.lua index 7dfbd9956..813cd8673 100644 --- a/xmake/core/project/cache.lua +++ b/xmake/core/project/cache.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/project/config.lua b/xmake/core/project/config.lua index 2da8e8705..0f9255f07 100644 --- a/xmake/core/project/config.lua +++ b/xmake/core/project/config.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/project/deprecated/project.lua b/xmake/core/project/deprecated/project.lua index 1b86b45e3..bf46571b2 100644 --- a/xmake/core/project/deprecated/project.lua +++ b/xmake/core/project/deprecated/project.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/project/history.lua b/xmake/core/project/history.lua index 72d090784..230e9fdde 100644 --- a/xmake/core/project/history.lua +++ b/xmake/core/project/history.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/project/option.lua b/xmake/core/project/option.lua index 164d570a2..46aa9376b 100644 --- a/xmake/core/project/option.lua +++ b/xmake/core/project/option.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/project/project.lua b/xmake/core/project/project.lua index 5d9170e1e..1e2935586 100644 --- a/xmake/core/project/project.lua +++ b/xmake/core/project/project.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/project/target.lua b/xmake/core/project/target.lua index 762c131bd..975a27fa6 100644 --- a/xmake/core/project/target.lua +++ b/xmake/core/project/target.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/project/template.lua b/xmake/core/project/template.lua index cbc1551a8..a325bfe0d 100644 --- a/xmake/core/project/template.lua +++ b/xmake/core/project/template.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/_g.lua b/xmake/core/sandbox/modules/_g.lua index 757ea3b66..79471e188 100644 --- a/xmake/core/sandbox/modules/_g.lua +++ b/xmake/core/sandbox/modules/_g.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/assert.lua b/xmake/core/sandbox/modules/assert.lua index bb39bf73b..a00cf6a03 100644 --- a/xmake/core/sandbox/modules/assert.lua +++ b/xmake/core/sandbox/modules/assert.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/catch.lua b/xmake/core/sandbox/modules/catch.lua index 319dd8428..71bc33295 100644 --- a/xmake/core/sandbox/modules/catch.lua +++ b/xmake/core/sandbox/modules/catch.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/coroutine.lua b/xmake/core/sandbox/modules/coroutine.lua index c1d74a9fd..374d69993 100644 --- a/xmake/core/sandbox/modules/coroutine.lua +++ b/xmake/core/sandbox/modules/coroutine.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/cprint.lua b/xmake/core/sandbox/modules/cprint.lua index d6e85081a..85f52a98d 100644 --- a/xmake/core/sandbox/modules/cprint.lua +++ b/xmake/core/sandbox/modules/cprint.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/cprintf.lua b/xmake/core/sandbox/modules/cprintf.lua index a23244ec8..675d55324 100644 --- a/xmake/core/sandbox/modules/cprintf.lua +++ b/xmake/core/sandbox/modules/cprintf.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/debug.lua b/xmake/core/sandbox/modules/debug.lua index ea05b2f0b..2a1d2e157 100644 --- a/xmake/core/sandbox/modules/debug.lua +++ b/xmake/core/sandbox/modules/debug.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/finally.lua b/xmake/core/sandbox/modules/finally.lua index 7ce8730c7..aade1f1f3 100644 --- a/xmake/core/sandbox/modules/finally.lua +++ b/xmake/core/sandbox/modules/finally.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/format.lua b/xmake/core/sandbox/modules/format.lua index 9f44ad41f..6dce074f4 100644 --- a/xmake/core/sandbox/modules/format.lua +++ b/xmake/core/sandbox/modules/format.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/hash.lua b/xmake/core/sandbox/modules/hash.lua index 7143aa511..aec137365 100644 --- a/xmake/core/sandbox/modules/hash.lua +++ b/xmake/core/sandbox/modules/hash.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/ifelse.lua b/xmake/core/sandbox/modules/ifelse.lua index 6823d1ea2..550b9384f 100644 --- a/xmake/core/sandbox/modules/ifelse.lua +++ b/xmake/core/sandbox/modules/ifelse.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/import.lua b/xmake/core/sandbox/modules/import.lua index 9cb99dbcd..bbedd6146 100644 --- a/xmake/core/sandbox/modules/import.lua +++ b/xmake/core/sandbox/modules/import.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/import/core/base/colors.lua b/xmake/core/sandbox/modules/import/core/base/colors.lua index 13d7e65cb..962086e87 100644 --- a/xmake/core/sandbox/modules/import/core/base/colors.lua +++ b/xmake/core/sandbox/modules/import/core/base/colors.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/import/core/base/global.lua b/xmake/core/sandbox/modules/import/core/base/global.lua index c05edb52c..92312f622 100644 --- a/xmake/core/sandbox/modules/import/core/base/global.lua +++ b/xmake/core/sandbox/modules/import/core/base/global.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/import/core/base/option.lua b/xmake/core/sandbox/modules/import/core/base/option.lua index bc5e261b9..048901587 100644 --- a/xmake/core/sandbox/modules/import/core/base/option.lua +++ b/xmake/core/sandbox/modules/import/core/base/option.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/import/core/base/privilege.lua b/xmake/core/sandbox/modules/import/core/base/privilege.lua index 8f94cdb79..295790244 100644 --- a/xmake/core/sandbox/modules/import/core/base/privilege.lua +++ b/xmake/core/sandbox/modules/import/core/base/privilege.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/import/core/base/semver.lua b/xmake/core/sandbox/modules/import/core/base/semver.lua index ee4c6e685..08a43dd76 100644 --- a/xmake/core/sandbox/modules/import/core/base/semver.lua +++ b/xmake/core/sandbox/modules/import/core/base/semver.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/import/core/base/task.lua b/xmake/core/sandbox/modules/import/core/base/task.lua index f3f7dbcb8..b63c965ea 100644 --- a/xmake/core/sandbox/modules/import/core/base/task.lua +++ b/xmake/core/sandbox/modules/import/core/base/task.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/import/core/language/language.lua b/xmake/core/sandbox/modules/import/core/language/language.lua index 676cf9a74..cdc324fd9 100644 --- a/xmake/core/sandbox/modules/import/core/language/language.lua +++ b/xmake/core/sandbox/modules/import/core/language/language.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/import/core/language/menu.lua b/xmake/core/sandbox/modules/import/core/language/menu.lua index b21f6bb73..c3cd0bda3 100644 --- a/xmake/core/sandbox/modules/import/core/language/menu.lua +++ b/xmake/core/sandbox/modules/import/core/language/menu.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/import/core/package/package.lua b/xmake/core/sandbox/modules/import/core/package/package.lua index 10d62f493..90b31c107 100644 --- a/xmake/core/sandbox/modules/import/core/package/package.lua +++ b/xmake/core/sandbox/modules/import/core/package/package.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/import/core/package/repository.lua b/xmake/core/sandbox/modules/import/core/package/repository.lua index 3336ab4e1..c8103e225 100644 --- a/xmake/core/sandbox/modules/import/core/package/repository.lua +++ b/xmake/core/sandbox/modules/import/core/package/repository.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/import/core/platform/environment.lua b/xmake/core/sandbox/modules/import/core/platform/environment.lua index 026fd0fc7..d6c612831 100644 --- a/xmake/core/sandbox/modules/import/core/platform/environment.lua +++ b/xmake/core/sandbox/modules/import/core/platform/environment.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/import/core/platform/menu.lua b/xmake/core/sandbox/modules/import/core/platform/menu.lua index ab30ec732..c8f0658c6 100644 --- a/xmake/core/sandbox/modules/import/core/platform/menu.lua +++ b/xmake/core/sandbox/modules/import/core/platform/menu.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/import/core/platform/platform.lua b/xmake/core/sandbox/modules/import/core/platform/platform.lua index e4175aaaa..4421947a4 100644 --- a/xmake/core/sandbox/modules/import/core/platform/platform.lua +++ b/xmake/core/sandbox/modules/import/core/platform/platform.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/import/core/project/cache.lua b/xmake/core/sandbox/modules/import/core/project/cache.lua index 066ae4d03..2267522be 100644 --- a/xmake/core/sandbox/modules/import/core/project/cache.lua +++ b/xmake/core/sandbox/modules/import/core/project/cache.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/import/core/project/config.lua b/xmake/core/sandbox/modules/import/core/project/config.lua index 4ecdeca92..e5ddf5379 100644 --- a/xmake/core/sandbox/modules/import/core/project/config.lua +++ b/xmake/core/sandbox/modules/import/core/project/config.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/import/core/project/history.lua b/xmake/core/sandbox/modules/import/core/project/history.lua index b205afdf9..561ece117 100644 --- a/xmake/core/sandbox/modules/import/core/project/history.lua +++ b/xmake/core/sandbox/modules/import/core/project/history.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/import/core/project/menu.lua b/xmake/core/sandbox/modules/import/core/project/menu.lua index c83eff5dc..9778f417d 100644 --- a/xmake/core/sandbox/modules/import/core/project/menu.lua +++ b/xmake/core/sandbox/modules/import/core/project/menu.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/import/core/project/project.lua b/xmake/core/sandbox/modules/import/core/project/project.lua index 715b3d83d..eb8aa4422 100644 --- a/xmake/core/sandbox/modules/import/core/project/project.lua +++ b/xmake/core/sandbox/modules/import/core/project/project.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/import/core/project/target.lua b/xmake/core/sandbox/modules/import/core/project/target.lua index 45309772d..89b73aa13 100644 --- a/xmake/core/sandbox/modules/import/core/project/target.lua +++ b/xmake/core/sandbox/modules/import/core/project/target.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/import/core/project/task.lua b/xmake/core/sandbox/modules/import/core/project/task.lua index 9652d0beb..cede51a56 100644 --- a/xmake/core/sandbox/modules/import/core/project/task.lua +++ b/xmake/core/sandbox/modules/import/core/project/task.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/import/core/project/template.lua b/xmake/core/sandbox/modules/import/core/project/template.lua index 3a776bd4a..fb9f43147 100644 --- a/xmake/core/sandbox/modules/import/core/project/template.lua +++ b/xmake/core/sandbox/modules/import/core/project/template.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/import/core/sandbox/module.lua b/xmake/core/sandbox/modules/import/core/sandbox/module.lua index 4a6425be7..072b09912 100644 --- a/xmake/core/sandbox/modules/import/core/sandbox/module.lua +++ b/xmake/core/sandbox/modules/import/core/sandbox/module.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/import/core/sandbox/sandbox.lua b/xmake/core/sandbox/modules/import/core/sandbox/sandbox.lua index 262363e1a..778e5078c 100644 --- a/xmake/core/sandbox/modules/import/core/sandbox/sandbox.lua +++ b/xmake/core/sandbox/modules/import/core/sandbox/sandbox.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/import/core/tool/compiler.lua b/xmake/core/sandbox/modules/import/core/tool/compiler.lua index f629c4ec6..66df911f2 100644 --- a/xmake/core/sandbox/modules/import/core/tool/compiler.lua +++ b/xmake/core/sandbox/modules/import/core/tool/compiler.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/import/core/tool/extractor.lua b/xmake/core/sandbox/modules/import/core/tool/extractor.lua index c23b48ccc..536c2a2eb 100644 --- a/xmake/core/sandbox/modules/import/core/tool/extractor.lua +++ b/xmake/core/sandbox/modules/import/core/tool/extractor.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/import/core/tool/linker.lua b/xmake/core/sandbox/modules/import/core/tool/linker.lua index e80102457..cd2c29af5 100644 --- a/xmake/core/sandbox/modules/import/core/tool/linker.lua +++ b/xmake/core/sandbox/modules/import/core/tool/linker.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/import/lib/detect/cache.lua b/xmake/core/sandbox/modules/import/lib/detect/cache.lua index 82d9c60bc..9fe3879ff 100644 --- a/xmake/core/sandbox/modules/import/lib/detect/cache.lua +++ b/xmake/core/sandbox/modules/import/lib/detect/cache.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/import/lib/detect/find_directory.lua b/xmake/core/sandbox/modules/import/lib/detect/find_directory.lua index e4c6c00d4..872760135 100644 --- a/xmake/core/sandbox/modules/import/lib/detect/find_directory.lua +++ b/xmake/core/sandbox/modules/import/lib/detect/find_directory.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/import/lib/detect/find_file.lua b/xmake/core/sandbox/modules/import/lib/detect/find_file.lua index e647f1869..bc864f9e7 100644 --- a/xmake/core/sandbox/modules/import/lib/detect/find_file.lua +++ b/xmake/core/sandbox/modules/import/lib/detect/find_file.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/import/lib/detect/find_library.lua b/xmake/core/sandbox/modules/import/lib/detect/find_library.lua index af4086599..a9bbf9cd4 100644 --- a/xmake/core/sandbox/modules/import/lib/detect/find_library.lua +++ b/xmake/core/sandbox/modules/import/lib/detect/find_library.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/import/lib/detect/find_package.lua b/xmake/core/sandbox/modules/import/lib/detect/find_package.lua index cc8eaf429..104df7ee2 100644 --- a/xmake/core/sandbox/modules/import/lib/detect/find_package.lua +++ b/xmake/core/sandbox/modules/import/lib/detect/find_package.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/import/lib/detect/find_path.lua b/xmake/core/sandbox/modules/import/lib/detect/find_path.lua index bb5a7d280..679f17682 100644 --- a/xmake/core/sandbox/modules/import/lib/detect/find_path.lua +++ b/xmake/core/sandbox/modules/import/lib/detect/find_path.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/import/lib/detect/find_program.lua b/xmake/core/sandbox/modules/import/lib/detect/find_program.lua index e38a3414c..fa78c37af 100644 --- a/xmake/core/sandbox/modules/import/lib/detect/find_program.lua +++ b/xmake/core/sandbox/modules/import/lib/detect/find_program.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/import/lib/detect/find_programver.lua b/xmake/core/sandbox/modules/import/lib/detect/find_programver.lua index b54b03899..3f9520a9f 100644 --- a/xmake/core/sandbox/modules/import/lib/detect/find_programver.lua +++ b/xmake/core/sandbox/modules/import/lib/detect/find_programver.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/inherit.lua b/xmake/core/sandbox/modules/inherit.lua index 659a5fa05..b00b7d7eb 100644 --- a/xmake/core/sandbox/modules/inherit.lua +++ b/xmake/core/sandbox/modules/inherit.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/insert.lua b/xmake/core/sandbox/modules/insert.lua index 7fb94096d..e89b206bd 100644 --- a/xmake/core/sandbox/modules/insert.lua +++ b/xmake/core/sandbox/modules/insert.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/interpreter/format.lua b/xmake/core/sandbox/modules/interpreter/format.lua index 614f0901f..c86f131b0 100644 --- a/xmake/core/sandbox/modules/interpreter/format.lua +++ b/xmake/core/sandbox/modules/interpreter/format.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/interpreter/getenv.lua b/xmake/core/sandbox/modules/interpreter/getenv.lua index a252e624f..91bab9d1f 100644 --- a/xmake/core/sandbox/modules/interpreter/getenv.lua +++ b/xmake/core/sandbox/modules/interpreter/getenv.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/interpreter/ifelse.lua b/xmake/core/sandbox/modules/interpreter/ifelse.lua index 5002a8e35..9753684c8 100644 --- a/xmake/core/sandbox/modules/interpreter/ifelse.lua +++ b/xmake/core/sandbox/modules/interpreter/ifelse.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/interpreter/ipairs.lua b/xmake/core/sandbox/modules/interpreter/ipairs.lua index ccfe8877e..c440a4739 100644 --- a/xmake/core/sandbox/modules/interpreter/ipairs.lua +++ b/xmake/core/sandbox/modules/interpreter/ipairs.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/interpreter/os.lua b/xmake/core/sandbox/modules/interpreter/os.lua index ec650a212..68aa3fca7 100644 --- a/xmake/core/sandbox/modules/interpreter/os.lua +++ b/xmake/core/sandbox/modules/interpreter/os.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/interpreter/pairs.lua b/xmake/core/sandbox/modules/interpreter/pairs.lua index 0c5c98558..8615dffd0 100644 --- a/xmake/core/sandbox/modules/interpreter/pairs.lua +++ b/xmake/core/sandbox/modules/interpreter/pairs.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/interpreter/path.lua b/xmake/core/sandbox/modules/interpreter/path.lua index da7f374b5..2a9ce8018 100644 --- a/xmake/core/sandbox/modules/interpreter/path.lua +++ b/xmake/core/sandbox/modules/interpreter/path.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/interpreter/print.lua b/xmake/core/sandbox/modules/interpreter/print.lua index f33afecea..d32af0fd6 100644 --- a/xmake/core/sandbox/modules/interpreter/print.lua +++ b/xmake/core/sandbox/modules/interpreter/print.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/interpreter/printf.lua b/xmake/core/sandbox/modules/interpreter/printf.lua index d75648675..358716c13 100644 --- a/xmake/core/sandbox/modules/interpreter/printf.lua +++ b/xmake/core/sandbox/modules/interpreter/printf.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/interpreter/string.lua b/xmake/core/sandbox/modules/interpreter/string.lua index b2bed7d2e..a9aebcb7e 100644 --- a/xmake/core/sandbox/modules/interpreter/string.lua +++ b/xmake/core/sandbox/modules/interpreter/string.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/interpreter/table.lua b/xmake/core/sandbox/modules/interpreter/table.lua index dc06886d5..ce52b5e75 100644 --- a/xmake/core/sandbox/modules/interpreter/table.lua +++ b/xmake/core/sandbox/modules/interpreter/table.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/interpreter/tonumber.lua b/xmake/core/sandbox/modules/interpreter/tonumber.lua index 04343da40..2329bb4d3 100644 --- a/xmake/core/sandbox/modules/interpreter/tonumber.lua +++ b/xmake/core/sandbox/modules/interpreter/tonumber.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/interpreter/tostring.lua b/xmake/core/sandbox/modules/interpreter/tostring.lua index 209be083d..ce745df5e 100644 --- a/xmake/core/sandbox/modules/interpreter/tostring.lua +++ b/xmake/core/sandbox/modules/interpreter/tostring.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/interpreter/type.lua b/xmake/core/sandbox/modules/interpreter/type.lua index 064bbd11e..7645a9ef4 100644 --- a/xmake/core/sandbox/modules/interpreter/type.lua +++ b/xmake/core/sandbox/modules/interpreter/type.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/io.lua b/xmake/core/sandbox/modules/io.lua index 7ca5a4def..414423620 100644 --- a/xmake/core/sandbox/modules/io.lua +++ b/xmake/core/sandbox/modules/io.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/ipairs.lua b/xmake/core/sandbox/modules/ipairs.lua index ca79e6b71..fc65f3840 100644 --- a/xmake/core/sandbox/modules/ipairs.lua +++ b/xmake/core/sandbox/modules/ipairs.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/math.lua b/xmake/core/sandbox/modules/math.lua index 6099309c0..28f7aaa54 100644 --- a/xmake/core/sandbox/modules/math.lua +++ b/xmake/core/sandbox/modules/math.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/os.lua b/xmake/core/sandbox/modules/os.lua index 3e60b52d8..5b603843c 100644 --- a/xmake/core/sandbox/modules/os.lua +++ b/xmake/core/sandbox/modules/os.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/pairs.lua b/xmake/core/sandbox/modules/pairs.lua index e428de384..80faf3d1a 100644 --- a/xmake/core/sandbox/modules/pairs.lua +++ b/xmake/core/sandbox/modules/pairs.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/path.lua b/xmake/core/sandbox/modules/path.lua index bf8443fd0..f24744b2e 100644 --- a/xmake/core/sandbox/modules/path.lua +++ b/xmake/core/sandbox/modules/path.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/print.lua b/xmake/core/sandbox/modules/print.lua index 9803605c3..2f58303d4 100644 --- a/xmake/core/sandbox/modules/print.lua +++ b/xmake/core/sandbox/modules/print.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/printf.lua b/xmake/core/sandbox/modules/printf.lua index 15c7595cd..dc56be0b5 100644 --- a/xmake/core/sandbox/modules/printf.lua +++ b/xmake/core/sandbox/modules/printf.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/process.lua b/xmake/core/sandbox/modules/process.lua index f8f2a2a7e..cc4282702 100644 --- a/xmake/core/sandbox/modules/process.lua +++ b/xmake/core/sandbox/modules/process.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/raise.lua b/xmake/core/sandbox/modules/raise.lua index ac3e7e05a..6f950b7d4 100644 --- a/xmake/core/sandbox/modules/raise.lua +++ b/xmake/core/sandbox/modules/raise.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/string.lua b/xmake/core/sandbox/modules/string.lua index 2506ae35e..dbc693e9f 100644 --- a/xmake/core/sandbox/modules/string.lua +++ b/xmake/core/sandbox/modules/string.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/table.lua b/xmake/core/sandbox/modules/table.lua index 1148f7246..444466a5e 100644 --- a/xmake/core/sandbox/modules/table.lua +++ b/xmake/core/sandbox/modules/table.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/tonumber.lua b/xmake/core/sandbox/modules/tonumber.lua index 04343da40..2329bb4d3 100644 --- a/xmake/core/sandbox/modules/tonumber.lua +++ b/xmake/core/sandbox/modules/tonumber.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/tostring.lua b/xmake/core/sandbox/modules/tostring.lua index 209be083d..ce745df5e 100644 --- a/xmake/core/sandbox/modules/tostring.lua +++ b/xmake/core/sandbox/modules/tostring.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/try.lua b/xmake/core/sandbox/modules/try.lua index c339f4abc..b4edbd709 100644 --- a/xmake/core/sandbox/modules/try.lua +++ b/xmake/core/sandbox/modules/try.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/type.lua b/xmake/core/sandbox/modules/type.lua index 064bbd11e..7645a9ef4 100644 --- a/xmake/core/sandbox/modules/type.lua +++ b/xmake/core/sandbox/modules/type.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/unpack.lua b/xmake/core/sandbox/modules/unpack.lua index b430615fd..863aac397 100644 --- a/xmake/core/sandbox/modules/unpack.lua +++ b/xmake/core/sandbox/modules/unpack.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/utils.lua b/xmake/core/sandbox/modules/utils.lua index c8593098f..7d553c33f 100644 --- a/xmake/core/sandbox/modules/utils.lua +++ b/xmake/core/sandbox/modules/utils.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/val.lua b/xmake/core/sandbox/modules/val.lua index a93eed5b5..06ec10aef 100644 --- a/xmake/core/sandbox/modules/val.lua +++ b/xmake/core/sandbox/modules/val.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/vformat.lua b/xmake/core/sandbox/modules/vformat.lua index 442100c81..72ffa37f5 100644 --- a/xmake/core/sandbox/modules/vformat.lua +++ b/xmake/core/sandbox/modules/vformat.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/vprint.lua b/xmake/core/sandbox/modules/vprint.lua index 49064afae..c8d4d3e0f 100644 --- a/xmake/core/sandbox/modules/vprint.lua +++ b/xmake/core/sandbox/modules/vprint.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/modules/vprintf.lua b/xmake/core/sandbox/modules/vprintf.lua index 58f211666..49c963131 100644 --- a/xmake/core/sandbox/modules/vprintf.lua +++ b/xmake/core/sandbox/modules/vprintf.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/sandbox/sandbox.lua b/xmake/core/sandbox/sandbox.lua index a706e6da2..0be6b604b 100644 --- a/xmake/core/sandbox/sandbox.lua +++ b/xmake/core/sandbox/sandbox.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/tool/builder.lua b/xmake/core/tool/builder.lua index 34ed1e3b8..ec0797bae 100644 --- a/xmake/core/tool/builder.lua +++ b/xmake/core/tool/builder.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/tool/compiler.lua b/xmake/core/tool/compiler.lua index a48c42b7e..a6afc1a22 100644 --- a/xmake/core/tool/compiler.lua +++ b/xmake/core/tool/compiler.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/tool/extractor.lua b/xmake/core/tool/extractor.lua index 480005c68..92d9f7823 100644 --- a/xmake/core/tool/extractor.lua +++ b/xmake/core/tool/extractor.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/tool/linker.lua b/xmake/core/tool/linker.lua index 118fbd4e3..1ce6d80e4 100644 --- a/xmake/core/tool/linker.lua +++ b/xmake/core/tool/linker.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/core/tool/tool.lua b/xmake/core/tool/tool.lua index 639306bc8..ba7388526 100644 --- a/xmake/core/tool/tool.lua +++ b/xmake/core/tool/tool.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/languages/asm/api.lua b/xmake/languages/asm/api.lua index 23dd1eaf8..153151b43 100644 --- a/xmake/languages/asm/api.lua +++ b/xmake/languages/asm/api.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/languages/asm/load.lua b/xmake/languages/asm/load.lua index 4eb290d07..7302b1bd7 100644 --- a/xmake/languages/asm/load.lua +++ b/xmake/languages/asm/load.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/languages/asm/xmake.lua b/xmake/languages/asm/xmake.lua index 4f729233f..c3f42dc60 100644 --- a/xmake/languages/asm/xmake.lua +++ b/xmake/languages/asm/xmake.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/languages/c++/api.lua b/xmake/languages/c++/api.lua index 2258cfad7..5823d77d1 100644 --- a/xmake/languages/c++/api.lua +++ b/xmake/languages/c++/api.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/languages/c++/check_main.lua b/xmake/languages/c++/check_main.lua index d5d434d8f..916630c81 100644 --- a/xmake/languages/c++/check_main.lua +++ b/xmake/languages/c++/check_main.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/languages/c++/load.lua b/xmake/languages/c++/load.lua index 4eb290d07..7302b1bd7 100644 --- a/xmake/languages/c++/load.lua +++ b/xmake/languages/c++/load.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/languages/c++/xmake.lua b/xmake/languages/c++/xmake.lua index e5add6b6e..fafa7a98a 100644 --- a/xmake/languages/c++/xmake.lua +++ b/xmake/languages/c++/xmake.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/languages/dlang/api.lua b/xmake/languages/dlang/api.lua index 8a0a07a8d..c3ab935d5 100644 --- a/xmake/languages/dlang/api.lua +++ b/xmake/languages/dlang/api.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/languages/dlang/check_main.lua b/xmake/languages/dlang/check_main.lua index 9eb1d43bb..0473e4fe4 100644 --- a/xmake/languages/dlang/check_main.lua +++ b/xmake/languages/dlang/check_main.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/languages/dlang/load.lua b/xmake/languages/dlang/load.lua index 4eb290d07..7302b1bd7 100644 --- a/xmake/languages/dlang/load.lua +++ b/xmake/languages/dlang/load.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/languages/dlang/xmake.lua b/xmake/languages/dlang/xmake.lua index 3052d7f65..fd64437b2 100644 --- a/xmake/languages/dlang/xmake.lua +++ b/xmake/languages/dlang/xmake.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/languages/golang/api.lua b/xmake/languages/golang/api.lua index 8ef4687a0..53991322a 100644 --- a/xmake/languages/golang/api.lua +++ b/xmake/languages/golang/api.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/languages/golang/check_main.lua b/xmake/languages/golang/check_main.lua index 62471650b..c60256ce1 100644 --- a/xmake/languages/golang/check_main.lua +++ b/xmake/languages/golang/check_main.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/languages/golang/load.lua b/xmake/languages/golang/load.lua index 4eb290d07..7302b1bd7 100644 --- a/xmake/languages/golang/load.lua +++ b/xmake/languages/golang/load.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/languages/golang/xmake.lua b/xmake/languages/golang/xmake.lua index 5a0119f34..f33cbb8d0 100644 --- a/xmake/languages/golang/xmake.lua +++ b/xmake/languages/golang/xmake.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/languages/msrc/api.lua b/xmake/languages/msrc/api.lua index 23934db76..0f415ea8b 100644 --- a/xmake/languages/msrc/api.lua +++ b/xmake/languages/msrc/api.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/languages/msrc/load.lua b/xmake/languages/msrc/load.lua index 4eb290d07..7302b1bd7 100644 --- a/xmake/languages/msrc/load.lua +++ b/xmake/languages/msrc/load.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/languages/msrc/xmake.lua b/xmake/languages/msrc/xmake.lua index e554c15a3..48d832abd 100644 --- a/xmake/languages/msrc/xmake.lua +++ b/xmake/languages/msrc/xmake.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/languages/objc++/api.lua b/xmake/languages/objc++/api.lua index f09b99119..b2ad216d1 100644 --- a/xmake/languages/objc++/api.lua +++ b/xmake/languages/objc++/api.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/languages/objc++/check_main.lua b/xmake/languages/objc++/check_main.lua index d5d434d8f..916630c81 100644 --- a/xmake/languages/objc++/check_main.lua +++ b/xmake/languages/objc++/check_main.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/languages/objc++/load.lua b/xmake/languages/objc++/load.lua index 4eb290d07..7302b1bd7 100644 --- a/xmake/languages/objc++/load.lua +++ b/xmake/languages/objc++/load.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/languages/objc++/xmake.lua b/xmake/languages/objc++/xmake.lua index 009a662e4..0ce6ab26c 100644 --- a/xmake/languages/objc++/xmake.lua +++ b/xmake/languages/objc++/xmake.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/languages/rust/api.lua b/xmake/languages/rust/api.lua index aaa010634..12d55b121 100644 --- a/xmake/languages/rust/api.lua +++ b/xmake/languages/rust/api.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/languages/rust/check_main.lua b/xmake/languages/rust/check_main.lua index 75cd89356..a8273da3b 100644 --- a/xmake/languages/rust/check_main.lua +++ b/xmake/languages/rust/check_main.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/languages/rust/load.lua b/xmake/languages/rust/load.lua index 4eb290d07..7302b1bd7 100644 --- a/xmake/languages/rust/load.lua +++ b/xmake/languages/rust/load.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/languages/rust/xmake.lua b/xmake/languages/rust/xmake.lua index 5a66990a8..25cb4c606 100644 --- a/xmake/languages/rust/xmake.lua +++ b/xmake/languages/rust/xmake.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/languages/swift/api.lua b/xmake/languages/swift/api.lua index e6b14d026..1db1b643e 100644 --- a/xmake/languages/swift/api.lua +++ b/xmake/languages/swift/api.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/languages/swift/load.lua b/xmake/languages/swift/load.lua index 4eb290d07..7302b1bd7 100644 --- a/xmake/languages/swift/load.lua +++ b/xmake/languages/swift/load.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/languages/swift/xmake.lua b/xmake/languages/swift/xmake.lua index a764dc91d..e60cb0d7e 100644 --- a/xmake/languages/swift/xmake.lua +++ b/xmake/languages/swift/xmake.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/core/tools/ar.lua b/xmake/modules/core/tools/ar.lua index 3c020f6e8..57e16c9a2 100644 --- a/xmake/modules/core/tools/ar.lua +++ b/xmake/modules/core/tools/ar.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/core/tools/cl.lua b/xmake/modules/core/tools/cl.lua index 3ff02496c..42ad45892 100644 --- a/xmake/modules/core/tools/cl.lua +++ b/xmake/modules/core/tools/cl.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/core/tools/clang.lua b/xmake/modules/core/tools/clang.lua index 46f1a16c6..2490976e8 100644 --- a/xmake/modules/core/tools/clang.lua +++ b/xmake/modules/core/tools/clang.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/core/tools/clangxx.lua b/xmake/modules/core/tools/clangxx.lua index 3e31ac92e..bca5732b9 100644 --- a/xmake/modules/core/tools/clangxx.lua +++ b/xmake/modules/core/tools/clangxx.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/core/tools/dmd.lua b/xmake/modules/core/tools/dmd.lua index ec76f8eab..f2a951925 100644 --- a/xmake/modules/core/tools/dmd.lua +++ b/xmake/modules/core/tools/dmd.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/core/tools/gcc.lua b/xmake/modules/core/tools/gcc.lua index 39e1d3864..5ee0cf38c 100644 --- a/xmake/modules/core/tools/gcc.lua +++ b/xmake/modules/core/tools/gcc.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/core/tools/gccgo.lua b/xmake/modules/core/tools/gccgo.lua index 41f941cf4..2006a6f57 100644 --- a/xmake/modules/core/tools/gccgo.lua +++ b/xmake/modules/core/tools/gccgo.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/core/tools/gdc.lua b/xmake/modules/core/tools/gdc.lua index 3682de49e..841471c4b 100644 --- a/xmake/modules/core/tools/gdc.lua +++ b/xmake/modules/core/tools/gdc.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/core/tools/go.lua b/xmake/modules/core/tools/go.lua index c56f0f9c1..1f1e8bda1 100644 --- a/xmake/modules/core/tools/go.lua +++ b/xmake/modules/core/tools/go.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/core/tools/gxx.lua b/xmake/modules/core/tools/gxx.lua index 2c73c5473..3d31aef87 100644 --- a/xmake/modules/core/tools/gxx.lua +++ b/xmake/modules/core/tools/gxx.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/core/tools/ldc.lua b/xmake/modules/core/tools/ldc.lua index b36fd446e..e7c739f12 100644 --- a/xmake/modules/core/tools/ldc.lua +++ b/xmake/modules/core/tools/ldc.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/core/tools/lib.lua b/xmake/modules/core/tools/lib.lua index 0b1541b04..d5b0475a2 100644 --- a/xmake/modules/core/tools/lib.lua +++ b/xmake/modules/core/tools/lib.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/core/tools/link.lua b/xmake/modules/core/tools/link.lua index b5161bc2c..3af9e4cb3 100644 --- a/xmake/modules/core/tools/link.lua +++ b/xmake/modules/core/tools/link.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/core/tools/ml.lua b/xmake/modules/core/tools/ml.lua index d25e1f239..b60e063e7 100644 --- a/xmake/modules/core/tools/ml.lua +++ b/xmake/modules/core/tools/ml.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/core/tools/ml64.lua b/xmake/modules/core/tools/ml64.lua index 899ba9972..fabee84d7 100644 --- a/xmake/modules/core/tools/ml64.lua +++ b/xmake/modules/core/tools/ml64.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/core/tools/rc.lua b/xmake/modules/core/tools/rc.lua index 5d02a4837..9db2858da 100644 --- a/xmake/modules/core/tools/rc.lua +++ b/xmake/modules/core/tools/rc.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/core/tools/rustc.lua b/xmake/modules/core/tools/rustc.lua index 1c8857502..10cb653cf 100644 --- a/xmake/modules/core/tools/rustc.lua +++ b/xmake/modules/core/tools/rustc.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/core/tools/swiftc.lua b/xmake/modules/core/tools/swiftc.lua index 933131f9d..320e93a08 100644 --- a/xmake/modules/core/tools/swiftc.lua +++ b/xmake/modules/core/tools/swiftc.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/packages/find_mbedtls.lua b/xmake/modules/detect/packages/find_mbedtls.lua index e92efddac..bb2898afd 100644 --- a/xmake/modules/detect/packages/find_mbedtls.lua +++ b/xmake/modules/detect/packages/find_mbedtls.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/packages/find_mysql.lua b/xmake/modules/detect/packages/find_mysql.lua index 21694e86b..2a17abc79 100644 --- a/xmake/modules/detect/packages/find_mysql.lua +++ b/xmake/modules/detect/packages/find_mysql.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/packages/find_openssl.lua b/xmake/modules/detect/packages/find_openssl.lua index 9efe76370..15f88557f 100644 --- a/xmake/modules/detect/packages/find_openssl.lua +++ b/xmake/modules/detect/packages/find_openssl.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/packages/find_pcre.lua b/xmake/modules/detect/packages/find_pcre.lua index a4284dc94..1d2ec3ef1 100644 --- a/xmake/modules/detect/packages/find_pcre.lua +++ b/xmake/modules/detect/packages/find_pcre.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/packages/find_pcre2.lua b/xmake/modules/detect/packages/find_pcre2.lua index 66f6e8a29..1f33b1097 100644 --- a/xmake/modules/detect/packages/find_pcre2.lua +++ b/xmake/modules/detect/packages/find_pcre2.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/packages/find_zlib.lua b/xmake/modules/detect/packages/find_zlib.lua index 49cc3e83a..f2a2f303a 100644 --- a/xmake/modules/detect/packages/find_zlib.lua +++ b/xmake/modules/detect/packages/find_zlib.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/sdks/find_cross_toolchains.lua b/xmake/modules/detect/sdks/find_cross_toolchains.lua index 0e989d6e7..f6d7a781d 100644 --- a/xmake/modules/detect/sdks/find_cross_toolchains.lua +++ b/xmake/modules/detect/sdks/find_cross_toolchains.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/sdks/find_ndk_sdkvers.lua b/xmake/modules/detect/sdks/find_ndk_sdkvers.lua index 16ad5eca7..3d2c82aa0 100644 --- a/xmake/modules/detect/sdks/find_ndk_sdkvers.lua +++ b/xmake/modules/detect/sdks/find_ndk_sdkvers.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/sdks/find_ndk_toolchains.lua b/xmake/modules/detect/sdks/find_ndk_toolchains.lua index f7d5b7430..efe572ace 100644 --- a/xmake/modules/detect/sdks/find_ndk_toolchains.lua +++ b/xmake/modules/detect/sdks/find_ndk_toolchains.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/sdks/find_vstudio.lua b/xmake/modules/detect/sdks/find_vstudio.lua index fb09d915d..a33b16f28 100644 --- a/xmake/modules/detect/sdks/find_vstudio.lua +++ b/xmake/modules/detect/sdks/find_vstudio.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/sdks/find_xcode_dir.lua b/xmake/modules/detect/sdks/find_xcode_dir.lua index 728ba1245..87444ef55 100644 --- a/xmake/modules/detect/sdks/find_xcode_dir.lua +++ b/xmake/modules/detect/sdks/find_xcode_dir.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/sdks/find_xcode_sdkvers.lua b/xmake/modules/detect/sdks/find_xcode_sdkvers.lua index a8ef1a816..e6bd306d0 100644 --- a/xmake/modules/detect/sdks/find_xcode_sdkvers.lua +++ b/xmake/modules/detect/sdks/find_xcode_sdkvers.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/tools/ar/has_flags.lua b/xmake/modules/detect/tools/ar/has_flags.lua index 7fcccb25a..8ed3932ac 100644 --- a/xmake/modules/detect/tools/ar/has_flags.lua +++ b/xmake/modules/detect/tools/ar/has_flags.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/tools/cl/cfeatures.lua b/xmake/modules/detect/tools/cl/cfeatures.lua index 2c953a00b..9b38a7707 100644 --- a/xmake/modules/detect/tools/cl/cfeatures.lua +++ b/xmake/modules/detect/tools/cl/cfeatures.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/tools/cl/cxxfeatures.lua b/xmake/modules/detect/tools/cl/cxxfeatures.lua index 4eba9d467..2361a0d5a 100644 --- a/xmake/modules/detect/tools/cl/cxxfeatures.lua +++ b/xmake/modules/detect/tools/cl/cxxfeatures.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/tools/cl/features.lua b/xmake/modules/detect/tools/cl/features.lua index 87d66d10e..3e60e4c1c 100644 --- a/xmake/modules/detect/tools/cl/features.lua +++ b/xmake/modules/detect/tools/cl/features.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/tools/cl/has_flags.lua b/xmake/modules/detect/tools/cl/has_flags.lua index 3e1b98f63..1f2f127ee 100644 --- a/xmake/modules/detect/tools/cl/has_flags.lua +++ b/xmake/modules/detect/tools/cl/has_flags.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/tools/clang/cfeatures.lua b/xmake/modules/detect/tools/clang/cfeatures.lua index 29a5f6bc2..83509d918 100644 --- a/xmake/modules/detect/tools/clang/cfeatures.lua +++ b/xmake/modules/detect/tools/clang/cfeatures.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/tools/clang/cxxfeatures.lua b/xmake/modules/detect/tools/clang/cxxfeatures.lua index f2fb92b45..02af70ed3 100644 --- a/xmake/modules/detect/tools/clang/cxxfeatures.lua +++ b/xmake/modules/detect/tools/clang/cxxfeatures.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/tools/clang/features.lua b/xmake/modules/detect/tools/clang/features.lua index 20807bc0c..dc580d96d 100644 --- a/xmake/modules/detect/tools/clang/features.lua +++ b/xmake/modules/detect/tools/clang/features.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/tools/clang/has_flags.lua b/xmake/modules/detect/tools/clang/has_flags.lua index 4afa58610..ff46787ae 100644 --- a/xmake/modules/detect/tools/clang/has_flags.lua +++ b/xmake/modules/detect/tools/clang/has_flags.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/tools/clangxx/features.lua b/xmake/modules/detect/tools/clangxx/features.lua index 3a809e6c3..e6594d284 100644 --- a/xmake/modules/detect/tools/clangxx/features.lua +++ b/xmake/modules/detect/tools/clangxx/features.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/tools/clangxx/has_flags.lua b/xmake/modules/detect/tools/clangxx/has_flags.lua index 4afa58610..ff46787ae 100644 --- a/xmake/modules/detect/tools/clangxx/has_flags.lua +++ b/xmake/modules/detect/tools/clangxx/has_flags.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/tools/dmd/has_flags.lua b/xmake/modules/detect/tools/dmd/has_flags.lua index f6ebb2960..3ee525867 100644 --- a/xmake/modules/detect/tools/dmd/has_flags.lua +++ b/xmake/modules/detect/tools/dmd/has_flags.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/tools/find_7z.lua b/xmake/modules/detect/tools/find_7z.lua index bc5c3d340..be9e50137 100644 --- a/xmake/modules/detect/tools/find_7z.lua +++ b/xmake/modules/detect/tools/find_7z.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/tools/find_ar.lua b/xmake/modules/detect/tools/find_ar.lua index 6bbf840c5..f6ec6a7c9 100644 --- a/xmake/modules/detect/tools/find_ar.lua +++ b/xmake/modules/detect/tools/find_ar.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/tools/find_brew.lua b/xmake/modules/detect/tools/find_brew.lua index e4c07403f..1d6ffcb1c 100644 --- a/xmake/modules/detect/tools/find_brew.lua +++ b/xmake/modules/detect/tools/find_brew.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/tools/find_ccache.lua b/xmake/modules/detect/tools/find_ccache.lua index 9e4fe4aa6..9c8f837be 100644 --- a/xmake/modules/detect/tools/find_ccache.lua +++ b/xmake/modules/detect/tools/find_ccache.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/tools/find_cl.lua b/xmake/modules/detect/tools/find_cl.lua index 3ab7cf5c1..9703363ed 100644 --- a/xmake/modules/detect/tools/find_cl.lua +++ b/xmake/modules/detect/tools/find_cl.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/tools/find_clang.lua b/xmake/modules/detect/tools/find_clang.lua index 5e1dc95d4..ba09b7720 100644 --- a/xmake/modules/detect/tools/find_clang.lua +++ b/xmake/modules/detect/tools/find_clang.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/tools/find_clangxx.lua b/xmake/modules/detect/tools/find_clangxx.lua index 77e80304f..b7ca869d8 100644 --- a/xmake/modules/detect/tools/find_clangxx.lua +++ b/xmake/modules/detect/tools/find_clangxx.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/tools/find_curl.lua b/xmake/modules/detect/tools/find_curl.lua index a5ba49e20..a17e77a14 100644 --- a/xmake/modules/detect/tools/find_curl.lua +++ b/xmake/modules/detect/tools/find_curl.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/tools/find_dmd.lua b/xmake/modules/detect/tools/find_dmd.lua index f244c0ad0..731cb53f4 100644 --- a/xmake/modules/detect/tools/find_dmd.lua +++ b/xmake/modules/detect/tools/find_dmd.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/tools/find_doxygen.lua b/xmake/modules/detect/tools/find_doxygen.lua index 5824c574c..c0eb3aee6 100644 --- a/xmake/modules/detect/tools/find_doxygen.lua +++ b/xmake/modules/detect/tools/find_doxygen.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/tools/find_gcc.lua b/xmake/modules/detect/tools/find_gcc.lua index dfb826b29..af27e0e0a 100644 --- a/xmake/modules/detect/tools/find_gcc.lua +++ b/xmake/modules/detect/tools/find_gcc.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/tools/find_gccgo.lua b/xmake/modules/detect/tools/find_gccgo.lua index a12be3067..e447dfb1f 100644 --- a/xmake/modules/detect/tools/find_gccgo.lua +++ b/xmake/modules/detect/tools/find_gccgo.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/tools/find_gdb.lua b/xmake/modules/detect/tools/find_gdb.lua index 3e698022a..7b97dd6b4 100644 --- a/xmake/modules/detect/tools/find_gdb.lua +++ b/xmake/modules/detect/tools/find_gdb.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/tools/find_gdc.lua b/xmake/modules/detect/tools/find_gdc.lua index a2b2b4c9a..83b986cde 100644 --- a/xmake/modules/detect/tools/find_gdc.lua +++ b/xmake/modules/detect/tools/find_gdc.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/tools/find_git.lua b/xmake/modules/detect/tools/find_git.lua index b21455b0c..10e4b6ee8 100644 --- a/xmake/modules/detect/tools/find_git.lua +++ b/xmake/modules/detect/tools/find_git.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/tools/find_go.lua b/xmake/modules/detect/tools/find_go.lua index 0b1b9103e..fc1eaec9f 100644 --- a/xmake/modules/detect/tools/find_go.lua +++ b/xmake/modules/detect/tools/find_go.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/tools/find_gxx.lua b/xmake/modules/detect/tools/find_gxx.lua index 5ab35fa44..be41b57a7 100644 --- a/xmake/modules/detect/tools/find_gxx.lua +++ b/xmake/modules/detect/tools/find_gxx.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/tools/find_gzip.lua b/xmake/modules/detect/tools/find_gzip.lua index 95d364971..c07440a89 100644 --- a/xmake/modules/detect/tools/find_gzip.lua +++ b/xmake/modules/detect/tools/find_gzip.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/tools/find_ldc2.lua b/xmake/modules/detect/tools/find_ldc2.lua index 8b2f42c5d..df241763f 100644 --- a/xmake/modules/detect/tools/find_ldc2.lua +++ b/xmake/modules/detect/tools/find_ldc2.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/tools/find_lib.lua b/xmake/modules/detect/tools/find_lib.lua index 107c33cbb..ae493e879 100644 --- a/xmake/modules/detect/tools/find_lib.lua +++ b/xmake/modules/detect/tools/find_lib.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/tools/find_link.lua b/xmake/modules/detect/tools/find_link.lua index d30fe6fbe..0523dc9fc 100644 --- a/xmake/modules/detect/tools/find_link.lua +++ b/xmake/modules/detect/tools/find_link.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/tools/find_lipo.lua b/xmake/modules/detect/tools/find_lipo.lua index 27be94c1f..303724049 100644 --- a/xmake/modules/detect/tools/find_lipo.lua +++ b/xmake/modules/detect/tools/find_lipo.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/tools/find_lldb.lua b/xmake/modules/detect/tools/find_lldb.lua index 8a6e86341..00130895d 100644 --- a/xmake/modules/detect/tools/find_lldb.lua +++ b/xmake/modules/detect/tools/find_lldb.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/tools/find_ml.lua b/xmake/modules/detect/tools/find_ml.lua index da3f026ac..479396c0c 100644 --- a/xmake/modules/detect/tools/find_ml.lua +++ b/xmake/modules/detect/tools/find_ml.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/tools/find_ml64.lua b/xmake/modules/detect/tools/find_ml64.lua index d2377c19e..c87772e04 100644 --- a/xmake/modules/detect/tools/find_ml64.lua +++ b/xmake/modules/detect/tools/find_ml64.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/tools/find_ollydbg.lua b/xmake/modules/detect/tools/find_ollydbg.lua index 636f52932..6398f303b 100644 --- a/xmake/modules/detect/tools/find_ollydbg.lua +++ b/xmake/modules/detect/tools/find_ollydbg.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/tools/find_ping.lua b/xmake/modules/detect/tools/find_ping.lua index ae3d571bf..bf877a452 100644 --- a/xmake/modules/detect/tools/find_ping.lua +++ b/xmake/modules/detect/tools/find_ping.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/tools/find_pkg_config.lua b/xmake/modules/detect/tools/find_pkg_config.lua index 8bbad9f3f..8e8f59ca3 100644 --- a/xmake/modules/detect/tools/find_pkg_config.lua +++ b/xmake/modules/detect/tools/find_pkg_config.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/tools/find_rc.lua b/xmake/modules/detect/tools/find_rc.lua index cbd24e82a..cc2696c45 100644 --- a/xmake/modules/detect/tools/find_rc.lua +++ b/xmake/modules/detect/tools/find_rc.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/tools/find_rustc.lua b/xmake/modules/detect/tools/find_rustc.lua index d01380d72..187995224 100644 --- a/xmake/modules/detect/tools/find_rustc.lua +++ b/xmake/modules/detect/tools/find_rustc.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/tools/find_sudo.lua b/xmake/modules/detect/tools/find_sudo.lua index 3306f2fd3..12a9f3f28 100644 --- a/xmake/modules/detect/tools/find_sudo.lua +++ b/xmake/modules/detect/tools/find_sudo.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/tools/find_swiftc.lua b/xmake/modules/detect/tools/find_swiftc.lua index cf9373739..8465de63e 100644 --- a/xmake/modules/detect/tools/find_swiftc.lua +++ b/xmake/modules/detect/tools/find_swiftc.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/tools/find_tar.lua b/xmake/modules/detect/tools/find_tar.lua index f37843171..b1b9f067f 100644 --- a/xmake/modules/detect/tools/find_tar.lua +++ b/xmake/modules/detect/tools/find_tar.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/tools/find_unzip.lua b/xmake/modules/detect/tools/find_unzip.lua index c3533cd54..4f5c8d2ec 100644 --- a/xmake/modules/detect/tools/find_unzip.lua +++ b/xmake/modules/detect/tools/find_unzip.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/tools/find_vsjitdebugger.lua b/xmake/modules/detect/tools/find_vsjitdebugger.lua index 879fd0a5d..008a2b0b2 100644 --- a/xmake/modules/detect/tools/find_vsjitdebugger.lua +++ b/xmake/modules/detect/tools/find_vsjitdebugger.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/tools/find_wget.lua b/xmake/modules/detect/tools/find_wget.lua index 5f8dd7594..b2dd3718e 100644 --- a/xmake/modules/detect/tools/find_wget.lua +++ b/xmake/modules/detect/tools/find_wget.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/tools/find_windbg.lua b/xmake/modules/detect/tools/find_windbg.lua index 323855d79..e5547ed25 100644 --- a/xmake/modules/detect/tools/find_windbg.lua +++ b/xmake/modules/detect/tools/find_windbg.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/tools/find_x64dbg.lua b/xmake/modules/detect/tools/find_x64dbg.lua index 431fea112..7611466ed 100644 --- a/xmake/modules/detect/tools/find_x64dbg.lua +++ b/xmake/modules/detect/tools/find_x64dbg.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/tools/find_zip.lua b/xmake/modules/detect/tools/find_zip.lua index 71405d3ff..9b2cf2824 100644 --- a/xmake/modules/detect/tools/find_zip.lua +++ b/xmake/modules/detect/tools/find_zip.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/tools/gcc/cfeatures.lua b/xmake/modules/detect/tools/gcc/cfeatures.lua index 795c625b0..0f5fd13a9 100644 --- a/xmake/modules/detect/tools/gcc/cfeatures.lua +++ b/xmake/modules/detect/tools/gcc/cfeatures.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/tools/gcc/cxxfeatures.lua b/xmake/modules/detect/tools/gcc/cxxfeatures.lua index a75d3e67d..cf153c819 100644 --- a/xmake/modules/detect/tools/gcc/cxxfeatures.lua +++ b/xmake/modules/detect/tools/gcc/cxxfeatures.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/tools/gcc/features.lua b/xmake/modules/detect/tools/gcc/features.lua index 09c9e857a..053734bd1 100644 --- a/xmake/modules/detect/tools/gcc/features.lua +++ b/xmake/modules/detect/tools/gcc/features.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/tools/gcc/has_flags.lua b/xmake/modules/detect/tools/gcc/has_flags.lua index 2a02c5424..aa02557e8 100644 --- a/xmake/modules/detect/tools/gcc/has_flags.lua +++ b/xmake/modules/detect/tools/gcc/has_flags.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/tools/gccgo/has_flags.lua b/xmake/modules/detect/tools/gccgo/has_flags.lua index 4afa58610..ff46787ae 100644 --- a/xmake/modules/detect/tools/gccgo/has_flags.lua +++ b/xmake/modules/detect/tools/gccgo/has_flags.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/tools/gdc/has_flags.lua b/xmake/modules/detect/tools/gdc/has_flags.lua index bdc39a1db..02016f5f1 100644 --- a/xmake/modules/detect/tools/gdc/has_flags.lua +++ b/xmake/modules/detect/tools/gdc/has_flags.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/tools/gxx/features.lua b/xmake/modules/detect/tools/gxx/features.lua index 3a809e6c3..e6594d284 100644 --- a/xmake/modules/detect/tools/gxx/features.lua +++ b/xmake/modules/detect/tools/gxx/features.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/tools/gxx/has_flags.lua b/xmake/modules/detect/tools/gxx/has_flags.lua index 4afa58610..ff46787ae 100644 --- a/xmake/modules/detect/tools/gxx/has_flags.lua +++ b/xmake/modules/detect/tools/gxx/has_flags.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/tools/ldc/has_flags.lua b/xmake/modules/detect/tools/ldc/has_flags.lua index bdc39a1db..02016f5f1 100644 --- a/xmake/modules/detect/tools/ldc/has_flags.lua +++ b/xmake/modules/detect/tools/ldc/has_flags.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/tools/link/has_flags.lua b/xmake/modules/detect/tools/link/has_flags.lua index d48d2090c..9525497eb 100644 --- a/xmake/modules/detect/tools/link/has_flags.lua +++ b/xmake/modules/detect/tools/link/has_flags.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/tools/ml/has_flags.lua b/xmake/modules/detect/tools/ml/has_flags.lua index 809421d5c..f27b4f118 100644 --- a/xmake/modules/detect/tools/ml/has_flags.lua +++ b/xmake/modules/detect/tools/ml/has_flags.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/tools/ml64/has_flags.lua b/xmake/modules/detect/tools/ml64/has_flags.lua index 761b5036b..54d12920c 100644 --- a/xmake/modules/detect/tools/ml64/has_flags.lua +++ b/xmake/modules/detect/tools/ml64/has_flags.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/detect/tools/rustc/has_flags.lua b/xmake/modules/detect/tools/rustc/has_flags.lua index 6c7977c54..2849444ed 100644 --- a/xmake/modules/detect/tools/rustc/has_flags.lua +++ b/xmake/modules/detect/tools/rustc/has_flags.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/devel/debugger/run.lua b/xmake/modules/devel/debugger/run.lua index 1b71caafe..c132084a3 100644 --- a/xmake/modules/devel/debugger/run.lua +++ b/xmake/modules/devel/debugger/run.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/devel/git/branches.lua b/xmake/modules/devel/git/branches.lua index dbca97a93..1741ff0d8 100644 --- a/xmake/modules/devel/git/branches.lua +++ b/xmake/modules/devel/git/branches.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/devel/git/checkout.lua b/xmake/modules/devel/git/checkout.lua index 02f6c657e..5a754ebe4 100644 --- a/xmake/modules/devel/git/checkout.lua +++ b/xmake/modules/devel/git/checkout.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/devel/git/checkurl.lua b/xmake/modules/devel/git/checkurl.lua index 225351458..323b48477 100644 --- a/xmake/modules/devel/git/checkurl.lua +++ b/xmake/modules/devel/git/checkurl.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/devel/git/clean.lua b/xmake/modules/devel/git/clean.lua index d6eff80bd..b69db1150 100644 --- a/xmake/modules/devel/git/clean.lua +++ b/xmake/modules/devel/git/clean.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/devel/git/clone.lua b/xmake/modules/devel/git/clone.lua index 9e17a69b0..4134db25e 100644 --- a/xmake/modules/devel/git/clone.lua +++ b/xmake/modules/devel/git/clone.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/devel/git/ls_remote.lua b/xmake/modules/devel/git/ls_remote.lua index 1f41c6e84..a76494337 100644 --- a/xmake/modules/devel/git/ls_remote.lua +++ b/xmake/modules/devel/git/ls_remote.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/devel/git/pull.lua b/xmake/modules/devel/git/pull.lua index 504d64ebd..2bba0184b 100644 --- a/xmake/modules/devel/git/pull.lua +++ b/xmake/modules/devel/git/pull.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/devel/git/refs.lua b/xmake/modules/devel/git/refs.lua index 7af98b854..8acd4a618 100644 --- a/xmake/modules/devel/git/refs.lua +++ b/xmake/modules/devel/git/refs.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/devel/git/tags.lua b/xmake/modules/devel/git/tags.lua index 3ccdc3a2f..8a77a0145 100644 --- a/xmake/modules/devel/git/tags.lua +++ b/xmake/modules/devel/git/tags.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/lib/detect/check_cxsnippets.lua b/xmake/modules/lib/detect/check_cxsnippets.lua index b451a1118..8bb3d358f 100644 --- a/xmake/modules/lib/detect/check_cxsnippets.lua +++ b/xmake/modules/lib/detect/check_cxsnippets.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/lib/detect/features.lua b/xmake/modules/lib/detect/features.lua index 3992e52d5..313212924 100644 --- a/xmake/modules/lib/detect/features.lua +++ b/xmake/modules/lib/detect/features.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/lib/detect/find_tool.lua b/xmake/modules/lib/detect/find_tool.lua index 226674dfb..787e9804f 100644 --- a/xmake/modules/lib/detect/find_tool.lua +++ b/xmake/modules/lib/detect/find_tool.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/lib/detect/find_toolname.lua b/xmake/modules/lib/detect/find_toolname.lua index d997eb879..6b2dcf85e 100644 --- a/xmake/modules/lib/detect/find_toolname.lua +++ b/xmake/modules/lib/detect/find_toolname.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/lib/detect/has_cfuncs.lua b/xmake/modules/lib/detect/has_cfuncs.lua index e87d41065..f4b26d7bd 100644 --- a/xmake/modules/lib/detect/has_cfuncs.lua +++ b/xmake/modules/lib/detect/has_cfuncs.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/lib/detect/has_cincludes.lua b/xmake/modules/lib/detect/has_cincludes.lua index 50c69f445..0fbd2d7ca 100644 --- a/xmake/modules/lib/detect/has_cincludes.lua +++ b/xmake/modules/lib/detect/has_cincludes.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/lib/detect/has_ctypes.lua b/xmake/modules/lib/detect/has_ctypes.lua index e6fed14e5..26be79114 100644 --- a/xmake/modules/lib/detect/has_ctypes.lua +++ b/xmake/modules/lib/detect/has_ctypes.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/lib/detect/has_cxxfuncs.lua b/xmake/modules/lib/detect/has_cxxfuncs.lua index 5eee07d91..b09390a39 100644 --- a/xmake/modules/lib/detect/has_cxxfuncs.lua +++ b/xmake/modules/lib/detect/has_cxxfuncs.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/lib/detect/has_cxxincludes.lua b/xmake/modules/lib/detect/has_cxxincludes.lua index c5df37b26..6e0f16343 100644 --- a/xmake/modules/lib/detect/has_cxxincludes.lua +++ b/xmake/modules/lib/detect/has_cxxincludes.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/lib/detect/has_cxxtypes.lua b/xmake/modules/lib/detect/has_cxxtypes.lua index a3d813210..3b1ee6d68 100644 --- a/xmake/modules/lib/detect/has_cxxtypes.lua +++ b/xmake/modules/lib/detect/has_cxxtypes.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/lib/detect/has_features.lua b/xmake/modules/lib/detect/has_features.lua index c554845c2..8518bdb9f 100644 --- a/xmake/modules/lib/detect/has_features.lua +++ b/xmake/modules/lib/detect/has_features.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/lib/detect/has_flags.lua b/xmake/modules/lib/detect/has_flags.lua index 68069b3db..8fe025682 100644 --- a/xmake/modules/lib/detect/has_flags.lua +++ b/xmake/modules/lib/detect/has_flags.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/lib/detect/pkg_config.lua b/xmake/modules/lib/detect/pkg_config.lua index fc299d94a..3c9299fa0 100644 --- a/xmake/modules/lib/detect/pkg_config.lua +++ b/xmake/modules/lib/detect/pkg_config.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/net/fasturl.lua b/xmake/modules/net/fasturl.lua index 8cc90f035..25ec19a4c 100644 --- a/xmake/modules/net/fasturl.lua +++ b/xmake/modules/net/fasturl.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/net/http/download.lua b/xmake/modules/net/http/download.lua index e5cc6c14d..ad9c17dcb 100644 --- a/xmake/modules/net/http/download.lua +++ b/xmake/modules/net/http/download.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/net/ping.lua b/xmake/modules/net/ping.lua index 9a2bd21f2..0026d6da5 100644 --- a/xmake/modules/net/ping.lua +++ b/xmake/modules/net/ping.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/privilege/sudo.lua b/xmake/modules/privilege/sudo.lua index 0a8816098..62b9ca881 100644 --- a/xmake/modules/privilege/sudo.lua +++ b/xmake/modules/privilege/sudo.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/modules/utils/archive/extract.lua b/xmake/modules/utils/archive/extract.lua index 4672c2442..abdf5e5d1 100644 --- a/xmake/modules/utils/archive/extract.lua +++ b/xmake/modules/utils/archive/extract.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/platforms/android/check.lua b/xmake/platforms/android/check.lua index 0127e62c0..c58f5504e 100644 --- a/xmake/platforms/android/check.lua +++ b/xmake/platforms/android/check.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/platforms/android/load.lua b/xmake/platforms/android/load.lua index 1cf2fe6de..a932f1d9e 100644 --- a/xmake/platforms/android/load.lua +++ b/xmake/platforms/android/load.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/platforms/android/xmake.lua b/xmake/platforms/android/xmake.lua index fcd2857f4..880e7566f 100644 --- a/xmake/platforms/android/xmake.lua +++ b/xmake/platforms/android/xmake.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/platforms/checker.lua b/xmake/platforms/checker.lua index 10e722a3f..b38178a2b 100644 --- a/xmake/platforms/checker.lua +++ b/xmake/platforms/checker.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/platforms/cross/check.lua b/xmake/platforms/cross/check.lua index bd9046145..221839b76 100644 --- a/xmake/platforms/cross/check.lua +++ b/xmake/platforms/cross/check.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/platforms/cross/load.lua b/xmake/platforms/cross/load.lua index a820a26e7..52f6da882 100644 --- a/xmake/platforms/cross/load.lua +++ b/xmake/platforms/cross/load.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/platforms/cross/xmake.lua b/xmake/platforms/cross/xmake.lua index 4330be48d..6acd83b0d 100644 --- a/xmake/platforms/cross/xmake.lua +++ b/xmake/platforms/cross/xmake.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/platforms/installer.lua b/xmake/platforms/installer.lua index 85652673b..def185423 100644 --- a/xmake/platforms/installer.lua +++ b/xmake/platforms/installer.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/platforms/iphoneos/check.lua b/xmake/platforms/iphoneos/check.lua index b247db5e6..2d2780063 100644 --- a/xmake/platforms/iphoneos/check.lua +++ b/xmake/platforms/iphoneos/check.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/platforms/iphoneos/load.lua b/xmake/platforms/iphoneos/load.lua index d62b49746..0e1bd7d24 100644 --- a/xmake/platforms/iphoneos/load.lua +++ b/xmake/platforms/iphoneos/load.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/platforms/iphoneos/xmake.lua b/xmake/platforms/iphoneos/xmake.lua index abe3395f3..1e82bd338 100644 --- a/xmake/platforms/iphoneos/xmake.lua +++ b/xmake/platforms/iphoneos/xmake.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/platforms/linux/check.lua b/xmake/platforms/linux/check.lua index 39d8daf70..6e5158b60 100644 --- a/xmake/platforms/linux/check.lua +++ b/xmake/platforms/linux/check.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/platforms/linux/install.lua b/xmake/platforms/linux/install.lua index abc6927e0..db63878e4 100644 --- a/xmake/platforms/linux/install.lua +++ b/xmake/platforms/linux/install.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/platforms/linux/load.lua b/xmake/platforms/linux/load.lua index c62322e15..b91c7148e 100644 --- a/xmake/platforms/linux/load.lua +++ b/xmake/platforms/linux/load.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/platforms/linux/uninstall.lua b/xmake/platforms/linux/uninstall.lua index 504260b9b..d3760d041 100644 --- a/xmake/platforms/linux/uninstall.lua +++ b/xmake/platforms/linux/uninstall.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/platforms/linux/xmake.lua b/xmake/platforms/linux/xmake.lua index 753e24742..97f82130f 100644 --- a/xmake/platforms/linux/xmake.lua +++ b/xmake/platforms/linux/xmake.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/platforms/macosx/check.lua b/xmake/platforms/macosx/check.lua index e04d44103..c9218a0b5 100644 --- a/xmake/platforms/macosx/check.lua +++ b/xmake/platforms/macosx/check.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/platforms/macosx/install.lua b/xmake/platforms/macosx/install.lua index abc6927e0..db63878e4 100644 --- a/xmake/platforms/macosx/install.lua +++ b/xmake/platforms/macosx/install.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/platforms/macosx/load.lua b/xmake/platforms/macosx/load.lua index 2a0a6a051..2cd72a587 100644 --- a/xmake/platforms/macosx/load.lua +++ b/xmake/platforms/macosx/load.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/platforms/macosx/uninstall.lua b/xmake/platforms/macosx/uninstall.lua index 504260b9b..d3760d041 100644 --- a/xmake/platforms/macosx/uninstall.lua +++ b/xmake/platforms/macosx/uninstall.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/platforms/macosx/xmake.lua b/xmake/platforms/macosx/xmake.lua index 7fbf6cd43..49e7eebd2 100644 --- a/xmake/platforms/macosx/xmake.lua +++ b/xmake/platforms/macosx/xmake.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/platforms/mingw/check.lua b/xmake/platforms/mingw/check.lua index 080e513ce..1442c1ec8 100644 --- a/xmake/platforms/mingw/check.lua +++ b/xmake/platforms/mingw/check.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/platforms/mingw/load.lua b/xmake/platforms/mingw/load.lua index b3ea19097..dfb8b1e8a 100644 --- a/xmake/platforms/mingw/load.lua +++ b/xmake/platforms/mingw/load.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/platforms/mingw/xmake.lua b/xmake/platforms/mingw/xmake.lua index 5151bc7e6..4f3f6b26b 100644 --- a/xmake/platforms/mingw/xmake.lua +++ b/xmake/platforms/mingw/xmake.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/platforms/watchos/check.lua b/xmake/platforms/watchos/check.lua index eec2efd30..07d59529d 100644 --- a/xmake/platforms/watchos/check.lua +++ b/xmake/platforms/watchos/check.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/platforms/watchos/load.lua b/xmake/platforms/watchos/load.lua index ec58447e8..318dbfb30 100644 --- a/xmake/platforms/watchos/load.lua +++ b/xmake/platforms/watchos/load.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/platforms/watchos/xmake.lua b/xmake/platforms/watchos/xmake.lua index b48f95cee..b42609dbb 100644 --- a/xmake/platforms/watchos/xmake.lua +++ b/xmake/platforms/watchos/xmake.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/platforms/windows/check.lua b/xmake/platforms/windows/check.lua index ebec9b837..52e5f9b75 100644 --- a/xmake/platforms/windows/check.lua +++ b/xmake/platforms/windows/check.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/platforms/windows/environment.lua b/xmake/platforms/windows/environment.lua index 961be68b8..a6f597e6a 100644 --- a/xmake/platforms/windows/environment.lua +++ b/xmake/platforms/windows/environment.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/platforms/windows/xmake.lua b/xmake/platforms/windows/xmake.lua index 65066025d..6e4eb05a2 100644 --- a/xmake/platforms/windows/xmake.lua +++ b/xmake/platforms/windows/xmake.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/plugins/doxygen/main.lua b/xmake/plugins/doxygen/main.lua index fe9c0df4d..766bacc1d 100644 --- a/xmake/plugins/doxygen/main.lua +++ b/xmake/plugins/doxygen/main.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/plugins/doxygen/xmake.lua b/xmake/plugins/doxygen/xmake.lua index 785815080..7aa21aa89 100644 --- a/xmake/plugins/doxygen/xmake.lua +++ b/xmake/plugins/doxygen/xmake.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/plugins/hello/xmake.lua b/xmake/plugins/hello/xmake.lua index c878719f0..93b283af4 100644 --- a/xmake/plugins/hello/xmake.lua +++ b/xmake/plugins/hello/xmake.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/plugins/lua/scripts/cat.lua b/xmake/plugins/lua/scripts/cat.lua index 49536a0e8..398c34629 100644 --- a/xmake/plugins/lua/scripts/cat.lua +++ b/xmake/plugins/lua/scripts/cat.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/plugins/lua/scripts/cp.lua b/xmake/plugins/lua/scripts/cp.lua index 5da34feb6..60ced5c50 100644 --- a/xmake/plugins/lua/scripts/cp.lua +++ b/xmake/plugins/lua/scripts/cp.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/plugins/lua/scripts/echo.lua b/xmake/plugins/lua/scripts/echo.lua index 0714e1c23..9c59048de 100644 --- a/xmake/plugins/lua/scripts/echo.lua +++ b/xmake/plugins/lua/scripts/echo.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/plugins/lua/scripts/lipo.lua b/xmake/plugins/lua/scripts/lipo.lua index 5c0ce510d..b87c44ccb 100644 --- a/xmake/plugins/lua/scripts/lipo.lua +++ b/xmake/plugins/lua/scripts/lipo.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/plugins/lua/scripts/mkdir.lua b/xmake/plugins/lua/scripts/mkdir.lua index a3dafb3df..b5c976971 100644 --- a/xmake/plugins/lua/scripts/mkdir.lua +++ b/xmake/plugins/lua/scripts/mkdir.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/plugins/lua/scripts/mv.lua b/xmake/plugins/lua/scripts/mv.lua index 9b5c35973..65479ef34 100644 --- a/xmake/plugins/lua/scripts/mv.lua +++ b/xmake/plugins/lua/scripts/mv.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/plugins/lua/scripts/rm.lua b/xmake/plugins/lua/scripts/rm.lua index 2bf625349..7b2fb8105 100644 --- a/xmake/plugins/lua/scripts/rm.lua +++ b/xmake/plugins/lua/scripts/rm.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/plugins/lua/scripts/rmdir.lua b/xmake/plugins/lua/scripts/rmdir.lua index 76739814e..068b7ecee 100644 --- a/xmake/plugins/lua/scripts/rmdir.lua +++ b/xmake/plugins/lua/scripts/rmdir.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/plugins/lua/scripts/versioninfo.lua b/xmake/plugins/lua/scripts/versioninfo.lua index accb1f471..ee98aa4eb 100644 --- a/xmake/plugins/lua/scripts/versioninfo.lua +++ b/xmake/plugins/lua/scripts/versioninfo.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/plugins/lua/xmake.lua b/xmake/plugins/lua/xmake.lua index 073d94875..1018f06bf 100644 --- a/xmake/plugins/lua/xmake.lua +++ b/xmake/plugins/lua/xmake.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/plugins/macro/macros/package.lua b/xmake/plugins/macro/macros/package.lua index c9fef7977..6a2b8363f 100644 --- a/xmake/plugins/macro/macros/package.lua +++ b/xmake/plugins/macro/macros/package.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/plugins/macro/main.lua b/xmake/plugins/macro/main.lua index 59510fc89..662ed2a0c 100644 --- a/xmake/plugins/macro/main.lua +++ b/xmake/plugins/macro/main.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/plugins/macro/xmake.lua b/xmake/plugins/macro/xmake.lua index 92dd4b32e..5aadd0263 100644 --- a/xmake/plugins/macro/xmake.lua +++ b/xmake/plugins/macro/xmake.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/plugins/project/clang/compile_commands.lua b/xmake/plugins/project/clang/compile_commands.lua index 3e3e3ab4b..9c9ebea16 100644 --- a/xmake/plugins/project/clang/compile_commands.lua +++ b/xmake/plugins/project/clang/compile_commands.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/plugins/project/main.lua b/xmake/plugins/project/main.lua index a12261ab8..8e998a4ea 100644 --- a/xmake/plugins/project/main.lua +++ b/xmake/plugins/project/main.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/plugins/project/makefile/makefile.lua b/xmake/plugins/project/makefile/makefile.lua index 811c9e98f..7f50d569a 100644 --- a/xmake/plugins/project/makefile/makefile.lua +++ b/xmake/plugins/project/makefile/makefile.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/plugins/project/vstudio/impl/vs200x.lua b/xmake/plugins/project/vstudio/impl/vs200x.lua index 10207467b..e7a2d1cb6 100644 --- a/xmake/plugins/project/vstudio/impl/vs200x.lua +++ b/xmake/plugins/project/vstudio/impl/vs200x.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/plugins/project/vstudio/impl/vs200x_solution.lua b/xmake/plugins/project/vstudio/impl/vs200x_solution.lua index 26117a557..b9c14925e 100644 --- a/xmake/plugins/project/vstudio/impl/vs200x_solution.lua +++ b/xmake/plugins/project/vstudio/impl/vs200x_solution.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/plugins/project/vstudio/impl/vs200x_vcproj.lua b/xmake/plugins/project/vstudio/impl/vs200x_vcproj.lua index eb0706cf8..8309e196e 100644 --- a/xmake/plugins/project/vstudio/impl/vs200x_vcproj.lua +++ b/xmake/plugins/project/vstudio/impl/vs200x_vcproj.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/plugins/project/vstudio/impl/vs201x.lua b/xmake/plugins/project/vstudio/impl/vs201x.lua index bf638d031..4c50c1936 100644 --- a/xmake/plugins/project/vstudio/impl/vs201x.lua +++ b/xmake/plugins/project/vstudio/impl/vs201x.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/plugins/project/vstudio/impl/vs201x_solution.lua b/xmake/plugins/project/vstudio/impl/vs201x_solution.lua index 73bc1655d..75f4248cc 100644 --- a/xmake/plugins/project/vstudio/impl/vs201x_solution.lua +++ b/xmake/plugins/project/vstudio/impl/vs201x_solution.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/plugins/project/vstudio/impl/vs201x_vcxproj.lua b/xmake/plugins/project/vstudio/impl/vs201x_vcxproj.lua index fbff38a72..7277d6ed3 100644 --- a/xmake/plugins/project/vstudio/impl/vs201x_vcxproj.lua +++ b/xmake/plugins/project/vstudio/impl/vs201x_vcxproj.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/plugins/project/vstudio/impl/vs201x_vcxproj_filters.lua b/xmake/plugins/project/vstudio/impl/vs201x_vcxproj_filters.lua index 7361611e2..dc4e6d22b 100644 --- a/xmake/plugins/project/vstudio/impl/vs201x_vcxproj_filters.lua +++ b/xmake/plugins/project/vstudio/impl/vs201x_vcxproj_filters.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua
+--!A cross-platform build utility based on Lua
--
-- Licensed to the Apache Software Foundation (ASF) under one
-- or more contributor license agreements. See the NOTICE file
diff --git a/xmake/plugins/project/vstudio/impl/vsfile.lua b/xmake/plugins/project/vstudio/impl/vsfile.lua index 89aeb15d9..9f392a578 100644 --- a/xmake/plugins/project/vstudio/impl/vsfile.lua +++ b/xmake/plugins/project/vstudio/impl/vsfile.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/plugins/project/vstudio/vs2002.lua b/xmake/plugins/project/vstudio/vs2002.lua index a6383fe8f..cc629395a 100644 --- a/xmake/plugins/project/vstudio/vs2002.lua +++ b/xmake/plugins/project/vstudio/vs2002.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/plugins/project/vstudio/vs2003.lua b/xmake/plugins/project/vstudio/vs2003.lua index 94da83ab5..4d31c4ddc 100644 --- a/xmake/plugins/project/vstudio/vs2003.lua +++ b/xmake/plugins/project/vstudio/vs2003.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/plugins/project/vstudio/vs2005.lua b/xmake/plugins/project/vstudio/vs2005.lua index 906514c43..d3295a7bf 100644 --- a/xmake/plugins/project/vstudio/vs2005.lua +++ b/xmake/plugins/project/vstudio/vs2005.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/plugins/project/vstudio/vs2008.lua b/xmake/plugins/project/vstudio/vs2008.lua index ad621e202..64e2cb607 100644 --- a/xmake/plugins/project/vstudio/vs2008.lua +++ b/xmake/plugins/project/vstudio/vs2008.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/plugins/project/vstudio/vs2010.lua b/xmake/plugins/project/vstudio/vs2010.lua index c1506bd45..275c0eda5 100644 --- a/xmake/plugins/project/vstudio/vs2010.lua +++ b/xmake/plugins/project/vstudio/vs2010.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/plugins/project/vstudio/vs2012.lua b/xmake/plugins/project/vstudio/vs2012.lua index d400ed53e..3450e6f93 100644 --- a/xmake/plugins/project/vstudio/vs2012.lua +++ b/xmake/plugins/project/vstudio/vs2012.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/plugins/project/vstudio/vs2013.lua b/xmake/plugins/project/vstudio/vs2013.lua index 3ffa39c1b..2716472c6 100644 --- a/xmake/plugins/project/vstudio/vs2013.lua +++ b/xmake/plugins/project/vstudio/vs2013.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/plugins/project/vstudio/vs2015.lua b/xmake/plugins/project/vstudio/vs2015.lua index 9d0be1fa2..33baaadad 100644 --- a/xmake/plugins/project/vstudio/vs2015.lua +++ b/xmake/plugins/project/vstudio/vs2015.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/plugins/project/vstudio/vs2017.lua b/xmake/plugins/project/vstudio/vs2017.lua index 03cfd95f3..e5ceb7660 100644 --- a/xmake/plugins/project/vstudio/vs2017.lua +++ b/xmake/plugins/project/vstudio/vs2017.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/plugins/project/xmake.lua b/xmake/plugins/project/xmake.lua index 382d82411..a85c389c3 100644 --- a/xmake/plugins/project/xmake.lua +++ b/xmake/plugins/project/xmake.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/plugins/repo/main.lua b/xmake/plugins/repo/main.lua index 58d9b2090..565b8edac 100644 --- a/xmake/plugins/repo/main.lua +++ b/xmake/plugins/repo/main.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file diff --git a/xmake/plugins/repo/xmake.lua b/xmake/plugins/repo/xmake.lua index 6f38fdc12..dafd7ae26 100644 --- a/xmake/plugins/repo/xmake.lua +++ b/xmake/plugins/repo/xmake.lua @@ -1,4 +1,4 @@ ---!The Make-like Build Utility based on Lua +--!A cross-platform build utility based on Lua -- -- Licensed to the Apache Software Foundation (ASF) under one -- or more contributor license agreements. See the NOTICE file |
