summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Albertson <kevin.eric.albertson@gmail.com>2024-01-04 02:18:36 (GMT)
committerBrad King <brad.king@kitware.com>2024-01-05 18:21:08 (GMT)
commit4d56db038d0fe452d5dbc901ca50f4a9da543e16 (patch)
tree6afad0ecd277b72de801e12068c08ed31cd7d8d3
parentda22b269b2a9242efe28b6961508373a5aaccf2b (diff)
downloadCMake-4d56db038d0fe452d5dbc901ca50f4a9da543e16.zip
CMake-4d56db038d0fe452d5dbc901ca50f4a9da543e16.tar.gz
CMake-4d56db038d0fe452d5dbc901ca50f4a9da543e16.tar.bz2
Tutorial: Make `INSTALL_DESTINATION` consistent with installed destination
-rw-r--r--Help/guide/tutorial/Step12/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/Help/guide/tutorial/Step12/CMakeLists.txt b/Help/guide/tutorial/Step12/CMakeLists.txt
index 1d8b5a6..1ba4e31 100644
--- a/Help/guide/tutorial/Step12/CMakeLists.txt
+++ b/Help/guide/tutorial/Step12/CMakeLists.txt
@@ -97,7 +97,7 @@ include(CMakePackageConfigHelpers)
# generate the config file that includes the exports
configure_package_config_file(${CMAKE_CURRENT_SOURCE_DIR}/Config.cmake.in
"${CMAKE_CURRENT_BINARY_DIR}/MathFunctionsConfig.cmake"
- INSTALL_DESTINATION "lib/cmake/example"
+ INSTALL_DESTINATION "lib/cmake/MathFunctions"
NO_SET_AND_CHECK_MACRO
NO_CHECK_REQUIRED_COMPONENTS_MACRO
)