Browse Source

autoupdate docs by xmake-repo/ci

ruki 4 years ago
parent
commit
b407cd3a11

+ 1 - 1
_coverpage.md

@@ -6,7 +6,7 @@
 
 - *Simple, lightweight, cross-platform*
 - *Modern C/C++ package manager, support distributed repositories*
-- **Recently added: chipmunk2d, glm, stackwalker**
+- **Recently added: benchmark, chipmunk2d, glm**
 
 [Gitee](https://gitee.com/tboox/xrepo/)
 [Github](https://github.com/xmake-io/xrepo/)

+ 1 - 1
_sidebar.md

@@ -1,7 +1,7 @@
 - Getting Started
   - [Sponsor](https://xmake.io/#/about/sponsor)
   - [Quick Start](getting_started.md)
-- Packages (151)
+- Packages (152)
   - [android](packages/android.md)
   - [bsd](packages/bsd.md)
   - [cross](packages/cross.md)

+ 33 - 0
mirror/packages/linux.html

@@ -224,6 +224,39 @@
 <pre><code class="lang-lua">add_requires("automake")
 </code></pre>
 <h2 id="b">b</h2>
+<h3 id="benchmarklinux">benchmark (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A microbenchmark support library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/google/benchmark">https://github.com/google/benchmark</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.5.2</td>
+</tr>
+<tr>
+<td>Architectures</td>
+<td>arm64-v8a, armv7, armv7s, i386, mips, mips64, mips64el, mipsel, x86_64</td>
+</tr>
+<tr>
+<td>Definition</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/b/benchmark/xmake.lua">benchmark/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install benchmark
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("benchmark")
+</code></pre>
 <h3 id="bin2clinux">bin2c (linux)</h3>
 <table>
 <thead>

+ 33 - 0
mirror/packages/macosx.html

@@ -224,6 +224,39 @@
 <pre><code class="lang-lua">add_requires("automake")
 </code></pre>
 <h2 id="b">b</h2>
+<h3 id="benchmarkmacosx">benchmark (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A microbenchmark support library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/google/benchmark">https://github.com/google/benchmark</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.5.2</td>
+</tr>
+<tr>
+<td>Architectures</td>
+<td>arm64, i386, x86_64</td>
+</tr>
+<tr>
+<td>Definition</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/b/benchmark/xmake.lua">benchmark/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install benchmark
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("benchmark")
+</code></pre>
 <h3 id="bin2cmacosx">bin2c (macosx)</h3>
 <table>
 <thead>

+ 33 - 0
mirror/packages/windows.html

@@ -224,6 +224,39 @@
 <pre><code class="lang-lua">add_requires("automake")
 </code></pre>
 <h2 id="b">b</h2>
+<h3 id="benchmarkwindows">benchmark (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A microbenchmark support library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/google/benchmark">https://github.com/google/benchmark</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.5.2</td>
+</tr>
+<tr>
+<td>Architectures</td>
+<td>x64, x86</td>
+</tr>
+<tr>
+<td>Definition</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/b/benchmark/xmake.lua">benchmark/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install benchmark
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("benchmark")
+</code></pre>
 <h3 id="bin2cwindows">bin2c (windows)</h3>
 <table>
 <thead>

+ 23 - 0
packages/linux.md

@@ -93,6 +93,29 @@ add_requires("automake")
 
 
 ## b
+### benchmark (linux)
+
+
+| Description | *A microbenchmark support library* |
+| -- | -- |
+| Homepage | [https://github.com/google/benchmark](https://github.com/google/benchmark) |
+| Versions | 1.5.2 |
+| Architectures | arm64-v8a, armv7, armv7s, i386, mips, mips64, mips64el, mipsel, x86_64 |
+| Definition | [benchmark/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/b/benchmark/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install benchmark
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("benchmark")
+```
+
+
 ### bin2c (linux)
 
 

+ 23 - 0
packages/macosx.md

@@ -93,6 +93,29 @@ add_requires("automake")
 
 
 ## b
+### benchmark (macosx)
+
+
+| Description | *A microbenchmark support library* |
+| -- | -- |
+| Homepage | [https://github.com/google/benchmark](https://github.com/google/benchmark) |
+| Versions | 1.5.2 |
+| Architectures | arm64, i386, x86_64 |
+| Definition | [benchmark/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/b/benchmark/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install benchmark
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("benchmark")
+```
+
+
 ### bin2c (macosx)
 
 

+ 23 - 0
packages/windows.md

@@ -93,6 +93,29 @@ add_requires("automake")
 
 
 ## b
+### benchmark (windows)
+
+
+| Description | *A microbenchmark support library* |
+| -- | -- |
+| Homepage | [https://github.com/google/benchmark](https://github.com/google/benchmark) |
+| Versions | 1.5.2 |
+| Architectures | x64, x86 |
+| Definition | [benchmark/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/b/benchmark/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install benchmark
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("benchmark")
+```
+
+
 ### bin2c (windows)
 
 

+ 14 - 14
sitemap.xml

@@ -7,72 +7,72 @@
     
 <url>
   <loc>https://xrepo.xmake.io</loc>
-  <lastmod>2020-11-08T12:49:18+08:00</lastmod>
+  <lastmod>2020-11-09T01:35:25+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xrepo.xmake.io/mirror/getting_started.html</loc>
-  <lastmod>2020-11-08T12:49:19+08:00</lastmod>
+  <lastmod>2020-11-09T01:35:26+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xrepo.xmake.io/mirror/zh-cn/getting_started.html</loc>
-  <lastmod>2020-11-08T12:49:19+08:00</lastmod>
+  <lastmod>2020-11-09T01:35:26+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xrepo.xmake.io/mirror/zh-cn/index.html</loc>
-  <lastmod>2020-11-08T12:49:19+08:00</lastmod>
+  <lastmod>2020-11-09T01:35:26+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xrepo.xmake.io/mirror/index.html</loc>
-  <lastmod>2020-11-08T12:49:20+08:00</lastmod>
+  <lastmod>2020-11-09T01:35:26+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xrepo.xmake.io/mirror/packages/msys.html</loc>
-  <lastmod>2020-11-08T12:49:20+08:00</lastmod>
+  <lastmod>2020-11-09T01:35:26+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xrepo.xmake.io/mirror/packages/iphoneos.html</loc>
-  <lastmod>2020-11-08T12:49:20+08:00</lastmod>
+  <lastmod>2020-11-09T01:35:27+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xrepo.xmake.io/mirror/packages/macosx.html</loc>
-  <lastmod>2020-11-08T12:49:20+08:00</lastmod>
+  <lastmod>2020-11-09T01:35:27+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xrepo.xmake.io/mirror/packages/linux.html</loc>
-  <lastmod>2020-11-08T12:49:21+08:00</lastmod>
+  <lastmod>2020-11-09T01:35:27+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xrepo.xmake.io/mirror/packages/android.html</loc>
-  <lastmod>2020-11-08T12:49:21+08:00</lastmod>
+  <lastmod>2020-11-09T01:35:27+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xrepo.xmake.io/mirror/packages/cross.html</loc>
-  <lastmod>2020-11-08T12:49:21+08:00</lastmod>
+  <lastmod>2020-11-09T01:35:28+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xrepo.xmake.io/mirror/packages/windows.html</loc>
-  <lastmod>2020-11-08T12:49:21+08:00</lastmod>
+  <lastmod>2020-11-09T01:35:28+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xrepo.xmake.io/mirror/packages/bsd.html</loc>
-  <lastmod>2020-11-08T12:49:21+08:00</lastmod>
+  <lastmod>2020-11-09T01:35:28+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xrepo.xmake.io/mirror/packages/mingw.html</loc>
-  <lastmod>2020-11-08T12:49:22+08:00</lastmod>
+  <lastmod>2020-11-09T01:35:28+08:00</lastmod>
 </url>
 
 </urlset>

+ 1 - 1
zh-cn/_coverpage.md

@@ -6,7 +6,7 @@
 
 - *简单,轻量,跨平台*
 - *现代化的 C/C++ 包管理工具,分布式仓库支持*
-- **Recently added: chipmunk2d, glm, stackwalker**
+- **Recently added: benchmark, chipmunk2d, glm**
 
 [Gitee](https://gitee.com/tboox/xrepo/)
 [GitHub](https://github.com/xmake-io/xrepo/)

+ 1 - 1
zh-cn/_sidebar.md

@@ -1,7 +1,7 @@
 - 快速入门
   - [赞助](https://xmake.io/#/zh-cn/about/sponsor)
   - [快速上手](zh-cn/getting_started.md)
-- 包列表 (151)
+- 包列表 (152)
   - [android](packages/android.md)
   - [bsd](packages/bsd.md)
   - [cross](packages/cross.md)