Browse Source

autoupdate docs by xmake-repo/ci

ruki 2 years ago
parent
commit
ab454fd1f2
5 changed files with 137 additions and 15 deletions
  1. 37 0
      mirror/packages/android.html
  2. 37 0
      mirror/packages/iphoneos.html
  3. 24 0
      packages/android.md
  4. 24 0
      packages/iphoneos.md
  5. 15 15
      sitemap.xml

+ 37 - 0
mirror/packages/android.html

@@ -11774,6 +11774,43 @@
 <h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
 <h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
 <pre><code class="lang-lua">add_requires("vulkan-headers")
 <pre><code class="lang-lua">add_requires("vulkan-headers")
 </code></pre>
 </code></pre>
+<h3 id="vulkanhppandroid">vulkan-hpp (android)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Open-Source Vulkan C++ API</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/KhronosGroup/Vulkan-Hpp/">https://github.com/KhronosGroup/Vulkan-Hpp/</a></td>
+</tr>
+<tr>
+<td>License</td>
+<td>Apache-2.0</td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v1.2.180, v1.2.189, v1.2.198, v1.3.231</td>
+</tr>
+<tr>
+<td>Architectures</td>
+<td>arm64-v8a, armeabi, armeabi-v7a, mip64, mips, x86, x86_64</td>
+</tr>
+<tr>
+<td>Definition</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/v/vulkan-hpp/xmake.lua">vulkan-hpp/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p android [--ndk=/xxx] vulkan-hpp
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("vulkan-hpp")
+</code></pre>
 <h3 id="vulkanmemoryallocatorandroid">vulkan-memory-allocator (android)</h3>
 <h3 id="vulkanmemoryallocatorandroid">vulkan-memory-allocator (android)</h3>
 <table>
 <table>
 <thead>
 <thead>

+ 37 - 0
mirror/packages/iphoneos.html

@@ -10860,6 +10860,43 @@
 <h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
 <h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
 <pre><code class="lang-lua">add_requires("vulkan-headers")
 <pre><code class="lang-lua">add_requires("vulkan-headers")
 </code></pre>
 </code></pre>
+<h3 id="vulkanhppiphoneos">vulkan-hpp (iphoneos)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Open-Source Vulkan C++ API</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/KhronosGroup/Vulkan-Hpp/">https://github.com/KhronosGroup/Vulkan-Hpp/</a></td>
+</tr>
+<tr>
+<td>License</td>
+<td>Apache-2.0</td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v1.2.180, v1.2.189, v1.2.198, v1.3.231</td>
+</tr>
+<tr>
+<td>Architectures</td>
+<td>arm64, x86_64</td>
+</tr>
+<tr>
+<td>Definition</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/v/vulkan-hpp/xmake.lua">vulkan-hpp/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p iphoneos vulkan-hpp
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("vulkan-hpp")
+</code></pre>
 <h3 id="vulkanmemoryallocatoriphoneos">vulkan-memory-allocator (iphoneos)</h3>
 <h3 id="vulkanmemoryallocatoriphoneos">vulkan-memory-allocator (iphoneos)</h3>
 <table>
 <table>
 <thead>
 <thead>

+ 24 - 0
packages/android.md

@@ -7824,6 +7824,30 @@ add_requires("vulkan-headers")
 ```
 ```
 
 
 
 
+### vulkan-hpp (android)
+
+
+| Description | *Open-Source Vulkan C++ API* |
+| -- | -- |
+| Homepage | [https://github.com/KhronosGroup/Vulkan-Hpp/](https://github.com/KhronosGroup/Vulkan-Hpp/) |
+| License | Apache-2.0 |
+| Versions | v1.2.180, v1.2.189, v1.2.198, v1.3.231 |
+| Architectures | arm64-v8a, armeabi, armeabi-v7a, mip64, mips, x86, x86_64 |
+| Definition | [vulkan-hpp/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/v/vulkan-hpp/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p android [--ndk=/xxx] vulkan-hpp
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("vulkan-hpp")
+```
+
+
 ### vulkan-memory-allocator (android)
 ### vulkan-memory-allocator (android)
 
 
 
 

+ 24 - 0
packages/iphoneos.md

@@ -7212,6 +7212,30 @@ add_requires("vulkan-headers")
 ```
 ```
 
 
 
 
+### vulkan-hpp (iphoneos)
+
+
+| Description | *Open-Source Vulkan C++ API* |
+| -- | -- |
+| Homepage | [https://github.com/KhronosGroup/Vulkan-Hpp/](https://github.com/KhronosGroup/Vulkan-Hpp/) |
+| License | Apache-2.0 |
+| Versions | v1.2.180, v1.2.189, v1.2.198, v1.3.231 |
+| Architectures | arm64, x86_64 |
+| Definition | [vulkan-hpp/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/v/vulkan-hpp/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p iphoneos vulkan-hpp
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("vulkan-hpp")
+```
+
+
 ### vulkan-memory-allocator (iphoneos)
 ### vulkan-memory-allocator (iphoneos)
 
 
 
 

+ 15 - 15
sitemap.xml

@@ -7,77 +7,77 @@
     
     
 <url>
 <url>
   <loc>https://xrepo.xmake.io</loc>
   <loc>https://xrepo.xmake.io</loc>
-  <lastmod>2023-03-19T13:15:27+08:00</lastmod>
+  <lastmod>2023-03-19T15:06:24+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xrepo.xmake.io/mirror/index.html</loc>
   <loc>https://xrepo.xmake.io/mirror/index.html</loc>
-  <lastmod>2023-03-19T13:15:30+08:00</lastmod>
+  <lastmod>2023-03-19T15:06:28+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xrepo.xmake.io/mirror/zh-cn/index.html</loc>
   <loc>https://xrepo.xmake.io/mirror/zh-cn/index.html</loc>
-  <lastmod>2023-03-19T13:15:30+08:00</lastmod>
+  <lastmod>2023-03-19T15:06:28+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xrepo.xmake.io/mirror/zh-cn/getting_started.html</loc>
   <loc>https://xrepo.xmake.io/mirror/zh-cn/getting_started.html</loc>
-  <lastmod>2023-03-19T13:15:30+08:00</lastmod>
+  <lastmod>2023-03-19T15:06:28+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xrepo.xmake.io/mirror/getting_started.html</loc>
   <loc>https://xrepo.xmake.io/mirror/getting_started.html</loc>
-  <lastmod>2023-03-19T13:15:31+08:00</lastmod>
+  <lastmod>2023-03-19T15:06:28+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xrepo.xmake.io/mirror/packages/linux.html</loc>
   <loc>https://xrepo.xmake.io/mirror/packages/linux.html</loc>
-  <lastmod>2023-03-19T13:15:31+08:00</lastmod>
+  <lastmod>2023-03-19T15:06:29+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xrepo.xmake.io/mirror/packages/windows.html</loc>
   <loc>https://xrepo.xmake.io/mirror/packages/windows.html</loc>
-  <lastmod>2023-03-19T13:15:31+08:00</lastmod>
+  <lastmod>2023-03-19T15:06:29+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xrepo.xmake.io/mirror/packages/mingw.html</loc>
   <loc>https://xrepo.xmake.io/mirror/packages/mingw.html</loc>
-  <lastmod>2023-03-19T13:15:32+08:00</lastmod>
+  <lastmod>2023-03-19T15:06:29+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xrepo.xmake.io/mirror/packages/iphoneos.html</loc>
   <loc>https://xrepo.xmake.io/mirror/packages/iphoneos.html</loc>
-  <lastmod>2023-03-19T13:15:32+08:00</lastmod>
+  <lastmod>2023-03-19T15:06:29+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xrepo.xmake.io/mirror/packages/cross.html</loc>
   <loc>https://xrepo.xmake.io/mirror/packages/cross.html</loc>
-  <lastmod>2023-03-19T13:15:32+08:00</lastmod>
+  <lastmod>2023-03-19T15:06:30+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xrepo.xmake.io/mirror/packages/macosx.html</loc>
   <loc>https://xrepo.xmake.io/mirror/packages/macosx.html</loc>
-  <lastmod>2023-03-19T13:15:33+08:00</lastmod>
+  <lastmod>2023-03-19T15:06:30+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xrepo.xmake.io/mirror/packages/android.html</loc>
   <loc>https://xrepo.xmake.io/mirror/packages/android.html</loc>
-  <lastmod>2023-03-19T13:15:33+08:00</lastmod>
+  <lastmod>2023-03-19T15:06:30+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xrepo.xmake.io/mirror/packages/bsd.html</loc>
   <loc>https://xrepo.xmake.io/mirror/packages/bsd.html</loc>
-  <lastmod>2023-03-19T13:15:33+08:00</lastmod>
+  <lastmod>2023-03-19T15:06:31+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xrepo.xmake.io/mirror/packages/msys.html</loc>
   <loc>https://xrepo.xmake.io/mirror/packages/msys.html</loc>
-  <lastmod>2023-03-19T13:15:33+08:00</lastmod>
+  <lastmod>2023-03-19T15:06:31+08:00</lastmod>
 </url>
 </url>
 
 
 <url>
 <url>
   <loc>https://xrepo.xmake.io/mirror/packages/wasm.html</loc>
   <loc>https://xrepo.xmake.io/mirror/packages/wasm.html</loc>
-  <lastmod>2023-03-19T13:15:34+08:00</lastmod>
+  <lastmod>2023-03-19T15:06:31+08:00</lastmod>
 </url>
 </url>
 
 
 </urlset>
 </urlset>