website: add search data. #105 b034d7970d

This commit is contained in:
jaywcjlove
2022-11-17 08:00:19 +00:00
parent a804a415f5
commit f412635104
97 changed files with 21288 additions and 96 deletions

View File

@ -42,7 +42,7 @@
<p>本清单提供了对 CMake 的入门简要概述,以及 CMake 常用示例</p>
</div></header><div class="menu-tocs"><div class="menu-btn"><svg aria-hidden="true" fill="currentColor" height="1em" width="1em" viewBox="0 0 16 16" version="1.1" data-view-component="true">
<path fill-rule="evenodd" d="M2 4a1 1 0 100-2 1 1 0 000 2zm3.75-1.5a.75.75 0 000 1.5h8.5a.75.75 0 000-1.5h-8.5zm0 5a.75.75 0 000 1.5h8.5a.75.75 0 000-1.5h-8.5zm0 5a.75.75 0 000 1.5h8.5a.75.75 0 000-1.5h-8.5zM3 8a1 1 0 11-2 0 1 1 0 012 0zm-1 6a1 1 0 100-2 1 1 0 000 2z"></path>
</svg></div><div class="menu-modal"><a aria-hidden="true" class="leve2 tocs-link" href="#入门">入门</a><a aria-hidden="true" class="leve3 tocs-link" href="#hello-cmake">Hello CMake</a><a aria-hidden="true" class="leve4 tocs-link" href="#cmakeliststxt">CMakeLists.txt</a><a aria-hidden="true" class="leve4 tocs-link" href="#maincpp">main.cpp</a><a aria-hidden="true" class="leve4 tocs-link" href="#编译示例">编译示例</a><a aria-hidden="true" class="leve3 tocs-link" href="#cmake">cmake</a><a aria-hidden="true" class="leve4 tocs-link" href="#常用参数">常用参数</a><a aria-hidden="true" class="leve2 tocs-link" href="#另见">另见</a></div></div><div class="h1wrap-body"><div class="wrap h2body-exist"><div class="wrap-header h2wrap"><h2 id="入门"><a aria-hidden="true" tabindex="-1" href="#入门"><span class="icon icon-link"></span></a>入门</h2><div class="wrap-body">
</svg></div><div class="menu-modal"><a aria-hidden="true" class="leve2 tocs-link" data-num="2" href="#入门">入门</a><a aria-hidden="true" class="leve3 tocs-link" data-num="3" href="#hello-cmake">Hello CMake</a><a aria-hidden="true" class="leve4 tocs-link" data-num="4" href="#cmakeliststxt">CMakeLists.txt</a><a aria-hidden="true" class="leve4 tocs-link" data-num="4" href="#maincpp">main.cpp</a><a aria-hidden="true" class="leve4 tocs-link" data-num="4" href="#编译示例">编译示例</a><a aria-hidden="true" class="leve3 tocs-link" data-num="3" href="#cmake">cmake</a><a aria-hidden="true" class="leve4 tocs-link" data-num="4" href="#常用参数">常用参数</a><a aria-hidden="true" class="leve2 tocs-link" data-num="2" href="#另见">另见</a></div></div><div class="h1wrap-body"><div class="wrap h2body-exist"><div class="wrap-header h2wrap"><h2 id="入门"><a aria-hidden="true" tabindex="-1" href="#入门"><span class="icon icon-link"></span></a>入门</h2><div class="wrap-body">
</div></div><div class="h2wrap-body"><div class="wrap h3body-exist"><div class="wrap-header h3wrap"><h3 id="hello-cmake"><a aria-hidden="true" tabindex="-1" href="#hello-cmake"><span class="icon icon-link"></span></a>Hello CMake</h3><div class="wrap-body">
<p>CMake 是一个用于配置跨平台源代码项目应该如何配置的工具建立在给定的平台上。</p>
<pre class="language-bash"><code class="language-bash code-highlight"><span class="code-line">├── CMakeLists.txt <span class="token comment"># 希望运行的 CMake命令</span>