Skip to content

Commit 07b1d43

Browse files
committed
deploy: d7a0ca4
1 parent 8e9d39d commit 07b1d43

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

_sources/background/redundancy.rst.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ then the minimal ``CMakeLists.txt`` file looks like:
6060

6161
.. literalinclude:: /../../tests/docs/bare_bones_cmake/CMakeLists.txt
6262
:language: CMake
63-
:lines: 15
63+
:lines: 18-20
6464
:linenos:
6565
:lineno-start: 1
6666

background/redundancy.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,9 @@ <h1>Redundancy in CMake-Based Build Systems<a class="headerlink" href="#redundan
130130
</pre></div>
131131
</div>
132132
<p>then the minimal <code class="docutils literal notranslate"><span class="pre">CMakeLists.txt</span></code> file looks like:</p>
133-
<div class="highlight-CMake notranslate"><div class="highlight"><pre><span></span><span class="linenos">1</span><span class="nb">add_executable</span><span class="p">(</span><span class="s">hello_world</span><span class="w"> </span><span class="s">hello_world.cpp</span><span class="p">)</span>
133+
<div class="highlight-CMake notranslate"><div class="highlight"><pre><span></span><span class="linenos">1</span><span class="nb">cmake_minimum_required</span><span class="p">(</span><span class="s">VERSION</span><span class="w"> </span><span class="s">3.5</span><span class="p">)</span><span class="w"> </span><span class="c"># Required as of CMake 4.0</span>
134+
<span class="linenos">2</span>
135+
<span class="linenos">3</span><span class="nb">add_executable</span><span class="p">(</span><span class="s">hello_world</span><span class="w"> </span><span class="s">hello_world.cpp</span><span class="p">)</span>
134136
</pre></div>
135137
</div>
136138
<p>Note this will not configure warning free, nor will you be able to install the

searchindex.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)