summaryrefslogtreecommitdiffstats
path: root/Help/guide/tutorial/Consumer/Config.cmake.in
diff options
context:
space:
mode:
authorBetsy McPhail <betsy.mcphail@kitware.com>2020-01-08 17:55:36 (GMT)
committerBetsy McPhail <betsy.mcphail@kitware.com>2020-01-10 16:38:00 (GMT)
commitcf2afb10653eb0705760e07f1113aa710ae7e6c3 (patch)
treed5dd0307ca29f351d6dadfff9aa16a00d07a5fe8 /Help/guide/tutorial/Consumer/Config.cmake.in
parent77b515f3eb0494721824e7ee47e32621b947c67f (diff)
downloadCMake-cf2afb10653eb0705760e07f1113aa710ae7e6c3.zip
CMake-cf2afb10653eb0705760e07f1113aa710ae7e6c3.tar.gz
CMake-cf2afb10653eb0705760e07f1113aa710ae7e6c3.tar.bz2
Tutorial: Remove 'Consumer' example
This example was incomplete and did not follow the format of the tutorial.
Diffstat (limited to 'Help/guide/tutorial/Consumer/Config.cmake.in')
-rw-r--r--Help/guide/tutorial/Consumer/Config.cmake.in14
1 files changed, 0 insertions, 14 deletions
diff --git a/Help/guide/tutorial/Consumer/Config.cmake.in b/Help/guide/tutorial/Consumer/Config.cmake.in
deleted file mode 100644
index 0b3f1e4..0000000
--- a/Help/guide/tutorial/Consumer/Config.cmake.in
+++ /dev/null
@@ -1,14 +0,0 @@
-
-@PACKAGE_INIT@
-
-include(CMakeFindDependencyMacro)
-
-function(find_external_dependency name)
- set(${name}_ROOT "" CACHE PATH "Root directory to find ${name}")
- mark_as_advanced(${name}_DIR)
- find_dependency(${name} PATHS ${${name}_ROOT} REQUIRED)
-endfunction()
-
-find_external_dependency(MathFunctions)
-
-include ( "${CMAKE_CURRENT_LIST_DIR}/ConsumerTargets.cmake" )