summaryrefslogtreecommitdiffstats
path: root/Help/guide/tutorial/Step8
diff options
context:
space:
mode:
authorJoseph Snyder <joe.snyder@kitware.com>2021-09-27 13:03:00 (GMT)
committerBrad King <brad.king@kitware.com>2021-10-07 15:53:51 (GMT)
commit5a86ce5428136b601e72b377e1447772e71a3812 (patch)
tree95436e8c6d3b11d07e050ba960e57e48943a96fc /Help/guide/tutorial/Step8
parent49392b591dd32732d101e7983f528f6560e7f7b5 (diff)
downloadCMake-5a86ce5428136b601e72b377e1447772e71a3812.zip
CMake-5a86ce5428136b601e72b377e1447772e71a3812.tar.gz
CMake-5a86ce5428136b601e72b377e1447772e71a3812.tar.bz2
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/Step8')
-rw-r--r--Help/guide/tutorial/Step8/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/Help/guide/tutorial/Step8/CMakeLists.txt b/Help/guide/tutorial/Step8/CMakeLists.txt
index 89972fb..4ae898f 100644
--- a/Help/guide/tutorial/Step8/CMakeLists.txt
+++ b/Help/guide/tutorial/Step8/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")