From b424df917dc14ea7376940c6c22a3a274aedcc2b Mon Sep 17 00:00:00 2001 From: Brad King Date: Thu, 17 Jan 2008 09:02:31 -0500 Subject: ENH: Major improvements to the FIND_PACKAGE command. See bug #3659. - Use CMAKE_PREFIX_PATH and CMAKE_SYSTEM_PREFIX_PATH among other means to locate package configuration files. - Create cmFindCommon as base for cmFindBase and cmFindPackageCommand - Move common functionality up to cmFindCommon - Improve documentation of FIND_* commands. - Fix FIND_* commands to not add framework/app paths in wrong place. --- Source/cmFindPathCommand.cxx | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'Source/cmFindPathCommand.cxx') diff --git a/Source/cmFindPathCommand.cxx b/Source/cmFindPathCommand.cxx index 00c08ec2bd..f322b43f4f 100644 --- a/Source/cmFindPathCommand.cxx +++ b/Source/cmFindPathCommand.cxx @@ -27,6 +27,12 @@ cmFindPathCommand::cmFindPathCommand() "FIND_XXX", "find_path"); cmSystemTools::ReplaceString(this->GenericDocumentation, "CMAKE_XXX_PATH", "CMAKE_INCLUDE_PATH"); + cmSystemTools::ReplaceString(this->GenericDocumentation, + "CMAKE_XXX_MAC_PATH", + "CMAKE_FRAMEWORK_PATH"); + cmSystemTools::ReplaceString(this->GenericDocumentation, + "CMAKE_SYSTEM_XXX_MAC_PATH", + "CMAKE_SYSTEM_FRAMEWORK_PATH"); cmSystemTools::ReplaceString(this->GenericDocumentation, "XXX_SYSTEM", "INCLUDE"); cmSystemTools::ReplaceString(this->GenericDocumentation, -- cgit v1.2.1