diff options
author | Joseph Snyder <joe.snyder@kitware.com> | 2021-09-27 10:11:17 -0400 |
---|---|---|
committer | Joseph Snyder <joe.snyder@kitware.com> | 2021-09-27 10:11:17 -0400 |
commit | f55a02a26e203f09282e1e7e693b6b5afeca966c (patch) | |
tree | e9fb54f640da7a636a96ace911e710bf1635a912 /Help/guide/tutorial/Step8 | |
parent | b0c2aeaab457a43f8dc4cc89ec9c80f2c49a3929 (diff) | |
download | cmake-f55a02a26e203f09282e1e7e693b6b5afeca966c.tar.gz |
Tutorial: Enhance CTestConfig info in Step 8
Add a copy of the CTestConfig.cmake from Step 9 into the directory for
Step 8.
Expand the information about the contents of the CTestConfig file and
write a brief explanation of where on CDash to acquire the CTestConfig
file for a specific project.
CMake Issue: #22663
Diffstat (limited to 'Help/guide/tutorial/Step8')
-rw-r--r-- | Help/guide/tutorial/Step8/CTestConfig.cmake | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Help/guide/tutorial/Step8/CTestConfig.cmake b/Help/guide/tutorial/Step8/CTestConfig.cmake new file mode 100644 index 0000000000..73efdb1f6e --- /dev/null +++ b/Help/guide/tutorial/Step8/CTestConfig.cmake @@ -0,0 +1,7 @@ +set(CTEST_PROJECT_NAME "CMakeTutorial") +set(CTEST_NIGHTLY_START_TIME "00:00:00 EST") + +set(CTEST_DROP_METHOD "http") +set(CTEST_DROP_SITE "my.cdash.org") +set(CTEST_DROP_LOCATION "/submit.php?project=CMakeTutorial") +set(CTEST_DROP_SITE_CDASH TRUE) |