Skip to content

Commit 71fc4cd

Browse files
committed
Add link to official CMake documentation
1 parent 01833f2 commit 71fc4cd

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

learn/building_programs/build_tools.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -545,3 +545,13 @@ We specified that we have a Fortran project and told CMake to create an executab
545545
``my_prog`` from the files ``tabulate.f90`` and ``functions.f90``.
546546
CMake knows the details how to build the executable from the specified sources,
547547
so we do not have to worry about the actual steps in the build process.
548+
549+
{% capture note %}
550+
551+
CMake's offical reference can be found at the
552+
<a href="https://cmake.org/cmake/help/latest/", target="_blank" rel="noopener">CMake webpage</a>.
553+
It is organised in manpages, which are also available with your local CMake
554+
installation as well using ``man cmake``. While it covers all functionality of
555+
CMake, it sometimes covers them only very briefly.
556+
{% endcapture %}
557+
{% include note.html title="Note" content=note %}

0 commit comments

Comments
 (0)