diff options
author | Joseph Snyder <joe.snyder@kitware.com> | 2021-09-27 09:03:00 -0400 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2021-10-07 11:53:51 -0400 |
commit | 5a86ce5428136b601e72b377e1447772e71a3812 (patch) | |
tree | 95436e8c6d3b11d07e050ba960e57e48943a96fc /Help/guide/tutorial/Step5 | |
parent | 49392b591dd32732d101e7983f528f6560e7f7b5 (diff) | |
download | cmake-5a86ce5428136b601e72b377e1447772e71a3812.tar.gz |
Tutorial: Step 4 improvements
Small changes to the text and CMake code for the fourth step of the
tutorial:
* Remove parameter from endfunction call
* Standardize on "binary directory" for test location
* Add additional information about a Release build.
Issue: #22663
Diffstat (limited to 'Help/guide/tutorial/Step5')
-rw-r--r-- | Help/guide/tutorial/Step5/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Help/guide/tutorial/Step5/CMakeLists.txt b/Help/guide/tutorial/Step5/CMakeLists.txt index fb10f57548..82d00c8d47 100644 --- a/Help/guide/tutorial/Step5/CMakeLists.txt +++ b/Help/guide/tutorial/Step5/CMakeLists.txt @@ -54,7 +54,7 @@ function(do_test target arg result) set_tests_properties(Comp${arg} PROPERTIES PASS_REGULAR_EXPRESSION ${result} ) -endfunction(do_test) +endfunction() # do a bunch of result based tests do_test(Tutorial 4 "4 is 2") |