summaryrefslogtreecommitdiffstats
path: root/Help/guide/tutorial/Adding System Introspection.rst
Commit message (Collapse)AuthorAgeFilesLines
* Tutorial: Update step 5 styleMarkus Ferrell2022-10-061-1/+1
|
* Tutorial: Move step 10 to step 4Markus Ferrell2022-08-081-5/+5
| | | | Shifts steps 4-9 to 5-10.
* Tutorial: Move step 8 to step 5. Shift steps 5-7 to 6-8.Markus Ferrell2022-07-191-5/+5
|
* Tutorial: Simplify logic checking for cmath functionsBrad King2022-06-011-5/+3
| | | | | | | | | | | | | | Since commit 07223c5c27 (Tutorial: Update Step 5 to work on Windows, 2020-02-18, v3.18.0-rc1~655^2) the logic does not work on non-Windows platforms when cmake is re-run on an existing build tree. It is also more complicated than we'd like for a tutorial example. Avoid the need to consider the `m` library case by performing the check as C++. Since `check_cxx_symbol_exists` cannot handle overloaded functions like `exp` and `log`, check with `check_cxx_source_compiles` instead. This also presents a more general-purpose example in the tutorial. Fixes: #23524
* Tutorial: Clarify instructions in Step 5Betsy McPhail2021-09-301-1/+4
|
* Tutorial: Make code snippets linkableBrad King2021-06-181-0/+4
| | | | | | Extend the change from commit 9e5bbb69ea (Tutorial: Add captions for code blocks, 2021-06-11) to also add a Sphinx named target to code blocks. Name each target after the change the code block makes.
* Tutorial: Add captions for code blocksJosef Angstenberger2021-06-171-0/+4
|
* Tutorial: Small formatting improvementsJosef Angstenberger2021-06-171-3/+3
| | | | | | - Use inline literals for all code fragments and names. - Add missing console code-blocks. - Always use c++, not c as code language.
* Tutorial: Split steps into separate filesJosef Angstenberger2021-06-171-0/+50
Fixes: #21737