Merge topic 'FPHSA_FOUND_VAR_OPTION'
f17711c FPHSA: Convert FOUND_VAR failure test to RunCMake c1f5780 FPHSA: improve documentation 7bb1abe FPHSA: Add FOUND_VAR option to specify _FOUND variable name
This commit is contained in:
commit
9d4394148a
@ -2,7 +2,7 @@
|
|||||||
#
|
#
|
||||||
# This function is intended to be used in FindXXX.cmake modules files.
|
# This function is intended to be used in FindXXX.cmake modules files.
|
||||||
# It handles the REQUIRED, QUIET and version-related arguments to find_package().
|
# It handles the REQUIRED, QUIET and version-related arguments to find_package().
|
||||||
# It also sets the <UPPERCASED_NAME>_FOUND variable.
|
# It also sets the <packagename>_FOUND variable.
|
||||||
# The package is considered found if all variables <var1>... listed contain
|
# The package is considered found if all variables <var1>... listed contain
|
||||||
# valid results, e.g. valid filepaths.
|
# valid results, e.g. valid filepaths.
|
||||||
#
|
#
|
||||||
@ -18,14 +18,22 @@
|
|||||||
# for the failure case. This is not recommended.
|
# for the failure case. This is not recommended.
|
||||||
#
|
#
|
||||||
# The second mode is more powerful and also supports version checking:
|
# The second mode is more powerful and also supports version checking:
|
||||||
# FIND_PACKAGE_HANDLE_STANDARD_ARGS(NAME [REQUIRED_VARS <var1>...<varN>]
|
# FIND_PACKAGE_HANDLE_STANDARD_ARGS(NAME [FOUND_VAR <resultVar>]
|
||||||
|
# [REQUIRED_VARS <var1>...<varN>]
|
||||||
# [VERSION_VAR <versionvar>]
|
# [VERSION_VAR <versionvar>]
|
||||||
# [HANDLE_COMPONENTS]
|
# [HANDLE_COMPONENTS]
|
||||||
# [CONFIG_MODE]
|
# [CONFIG_MODE]
|
||||||
# [FAIL_MESSAGE "Custom failure message"] )
|
# [FAIL_MESSAGE "Custom failure message"] )
|
||||||
#
|
#
|
||||||
# As above, if <var1> through <varN> are all valid, <UPPERCASED_NAME>_FOUND
|
# In this mode, the name of the result-variable can be set either to either
|
||||||
# will be set to TRUE.
|
# <UPPERCASED_NAME>_FOUND or <OriginalCase_Name>_FOUND using the FOUND_VAR option.
|
||||||
|
# Other names for the result-variable are not allowed.
|
||||||
|
# So for a Find-module named FindFooBar.cmake, the two possible names are
|
||||||
|
# FooBar_FOUND and FOOBAR_FOUND. It is recommended to use the original case version.
|
||||||
|
# If the FOUND_VAR option is not used, the default is <UPPERCASED_NAME>_FOUND.
|
||||||
|
#
|
||||||
|
# As in the simple mode, if <var1> through <varN> are all valid,
|
||||||
|
# <packagename>_FOUND will be set to TRUE.
|
||||||
# After REQUIRED_VARS the variables which are required for this package are listed.
|
# After REQUIRED_VARS the variables which are required for this package are listed.
|
||||||
# Following VERSION_VAR the name of the variable can be specified which holds
|
# Following VERSION_VAR the name of the variable can be specified which holds
|
||||||
# the version of the package which has been found. If this is done, this version
|
# the version of the package which has been found. If this is done, this version
|
||||||
@ -35,7 +43,7 @@
|
|||||||
# which has been actually found, both if the version is ok or not.
|
# which has been actually found, both if the version is ok or not.
|
||||||
# If the package supports components, use the HANDLE_COMPONENTS option to enable
|
# If the package supports components, use the HANDLE_COMPONENTS option to enable
|
||||||
# handling them. In this case, find_package_handle_standard_args() will report
|
# handling them. In this case, find_package_handle_standard_args() will report
|
||||||
# which components have been found and which are missing, and the <NAME>_FOUND
|
# which components have been found and which are missing, and the <packagename>_FOUND
|
||||||
# variable will be set to FALSE if any of the required components (i.e. not the
|
# variable will be set to FALSE if any of the required components (i.e. not the
|
||||||
# ones listed after OPTIONAL_COMPONENTS) are missing.
|
# ones listed after OPTIONAL_COMPONENTS) are missing.
|
||||||
# Use the option CONFIG_MODE if your FindXXX.cmake module is a wrapper for
|
# Use the option CONFIG_MODE if your FindXXX.cmake module is a wrapper for
|
||||||
@ -47,7 +55,7 @@
|
|||||||
#
|
#
|
||||||
# Example for mode 1:
|
# Example for mode 1:
|
||||||
#
|
#
|
||||||
# FIND_PACKAGE_HANDLE_STANDARD_ARGS(LibXml2 DEFAULT_MSG LIBXML2_LIBRARY LIBXML2_INCLUDE_DIR)
|
# find_package_handle_standard_args(LibXml2 DEFAULT_MSG LIBXML2_LIBRARY LIBXML2_INCLUDE_DIR)
|
||||||
#
|
#
|
||||||
# LibXml2 is considered to be found, if both LIBXML2_LIBRARY and
|
# LibXml2 is considered to be found, if both LIBXML2_LIBRARY and
|
||||||
# LIBXML2_INCLUDE_DIR are valid. Then also LIBXML2_FOUND is set to TRUE.
|
# LIBXML2_INCLUDE_DIR are valid. Then also LIBXML2_FOUND is set to TRUE.
|
||||||
@ -58,20 +66,23 @@
|
|||||||
#
|
#
|
||||||
# Example for mode 2:
|
# Example for mode 2:
|
||||||
#
|
#
|
||||||
# FIND_PACKAGE_HANDLE_STANDARD_ARGS(BISON REQUIRED_VARS BISON_EXECUTABLE
|
# find_package_handle_standard_args(LibXslt FOUND_VAR LibXslt_FOUND
|
||||||
# VERSION_VAR BISON_VERSION)
|
# REQUIRED_VARS LibXslt_LIBRARIES LibXslt_INCLUDE_DIRS
|
||||||
# In this case, BISON is considered to be found if the variable(s) listed
|
# VERSION_VAR LibXslt_VERSION_STRING)
|
||||||
# after REQUIRED_VAR are all valid, i.e. BISON_EXECUTABLE in this case.
|
# In this case, LibXslt is considered to be found if the variable(s) listed
|
||||||
# Also the version of BISON will be checked by using the version contained
|
# after REQUIRED_VAR are all valid, i.e. LibXslt_LIBRARIES and LibXslt_INCLUDE_DIRS
|
||||||
# in BISON_VERSION.
|
# in this case. The result will then be stored in LibXslt_FOUND .
|
||||||
|
# Also the version of LibXslt will be checked by using the version contained
|
||||||
|
# in LibXslt_VERSION_STRING.
|
||||||
# Since no FAIL_MESSAGE is given, the default messages will be printed.
|
# Since no FAIL_MESSAGE is given, the default messages will be printed.
|
||||||
#
|
#
|
||||||
# Another example for mode 2:
|
# Another example for mode 2:
|
||||||
#
|
#
|
||||||
# find_package(Automoc4 QUIET NO_MODULE HINTS /opt/automoc4)
|
# find_package(Automoc4 QUIET NO_MODULE HINTS /opt/automoc4)
|
||||||
# FIND_PACKAGE_HANDLE_STANDARD_ARGS(Automoc4 CONFIG_MODE)
|
# find_package_handle_standard_args(Automoc4 CONFIG_MODE)
|
||||||
# In this case, FindAutmoc4.cmake wraps a call to find_package(Automoc4 NO_MODULE)
|
# In this case, FindAutmoc4.cmake wraps a call to find_package(Automoc4 NO_MODULE)
|
||||||
# and adds an additional search directory for automoc4.
|
# and adds an additional search directory for automoc4.
|
||||||
|
# Here the result will be stored in AUTOMOC4_FOUND.
|
||||||
# The following FIND_PACKAGE_HANDLE_STANDARD_ARGS() call produces a proper
|
# The following FIND_PACKAGE_HANDLE_STANDARD_ARGS() call produces a proper
|
||||||
# success/error message.
|
# success/error message.
|
||||||
|
|
||||||
@ -137,8 +148,8 @@ function(FIND_PACKAGE_HANDLE_STANDARD_ARGS _NAME _FIRST_ARG)
|
|||||||
|
|
||||||
# set up the arguments for CMAKE_PARSE_ARGUMENTS and check whether we are in
|
# set up the arguments for CMAKE_PARSE_ARGUMENTS and check whether we are in
|
||||||
# new extended or in the "old" mode:
|
# new extended or in the "old" mode:
|
||||||
set(options CONFIG_MODE HANDLE_COMPONENTS)
|
set(options CONFIG_MODE HANDLE_COMPONENTS)
|
||||||
set(oneValueArgs FAIL_MESSAGE VERSION_VAR)
|
set(oneValueArgs FAIL_MESSAGE VERSION_VAR FOUND_VAR)
|
||||||
set(multiValueArgs REQUIRED_VARS)
|
set(multiValueArgs REQUIRED_VARS)
|
||||||
set(_KEYWORDS_FOR_EXTENDED_MODE ${options} ${oneValueArgs} ${multiValueArgs} )
|
set(_KEYWORDS_FOR_EXTENDED_MODE ${options} ${oneValueArgs} ${multiValueArgs} )
|
||||||
list(FIND _KEYWORDS_FOR_EXTENDED_MODE "${_FIRST_ARG}" INDEX)
|
list(FIND _KEYWORDS_FOR_EXTENDED_MODE "${_FIRST_ARG}" INDEX)
|
||||||
@ -183,22 +194,32 @@ function(FIND_PACKAGE_HANDLE_STANDARD_ARGS _NAME _FIRST_ARG)
|
|||||||
string(TOUPPER ${_NAME} _NAME_UPPER)
|
string(TOUPPER ${_NAME} _NAME_UPPER)
|
||||||
string(TOLOWER ${_NAME} _NAME_LOWER)
|
string(TOLOWER ${_NAME} _NAME_LOWER)
|
||||||
|
|
||||||
|
if(FPHSA_FOUND_VAR)
|
||||||
|
if("${FPHSA_FOUND_VAR}" MATCHES "^${_NAME}_FOUND$" OR "${FPHSA_FOUND_VAR}" MATCHES "^${_NAME_UPPER}_FOUND$")
|
||||||
|
set(_FOUND_VAR ${FPHSA_FOUND_VAR})
|
||||||
|
else()
|
||||||
|
message(FATAL_ERROR "The argument for FOUND_VAR is \"${FPHSA_FOUND_VAR}\", but only \"${_NAME}_FOUND\" and \"${_NAME_UPPER}_FOUND\" are valid names.")
|
||||||
|
endif()
|
||||||
|
else()
|
||||||
|
set(_FOUND_VAR ${_NAME_UPPER}_FOUND)
|
||||||
|
endif()
|
||||||
|
|
||||||
# collect all variables which were not found, so they can be printed, so the
|
# collect all variables which were not found, so they can be printed, so the
|
||||||
# user knows better what went wrong (#6375)
|
# user knows better what went wrong (#6375)
|
||||||
set(MISSING_VARS "")
|
set(MISSING_VARS "")
|
||||||
set(DETAILS "")
|
set(DETAILS "")
|
||||||
# check if all passed variables are valid
|
# check if all passed variables are valid
|
||||||
unset(${_NAME_UPPER}_FOUND)
|
unset(${_FOUND_VAR})
|
||||||
foreach(_CURRENT_VAR ${FPHSA_REQUIRED_VARS})
|
foreach(_CURRENT_VAR ${FPHSA_REQUIRED_VARS})
|
||||||
if(NOT ${_CURRENT_VAR})
|
if(NOT ${_CURRENT_VAR})
|
||||||
set(${_NAME_UPPER}_FOUND FALSE)
|
set(${_FOUND_VAR} FALSE)
|
||||||
set(MISSING_VARS "${MISSING_VARS} ${_CURRENT_VAR}")
|
set(MISSING_VARS "${MISSING_VARS} ${_CURRENT_VAR}")
|
||||||
else()
|
else()
|
||||||
set(DETAILS "${DETAILS}[${${_CURRENT_VAR}}]")
|
set(DETAILS "${DETAILS}[${${_CURRENT_VAR}}]")
|
||||||
endif()
|
endif()
|
||||||
endforeach()
|
endforeach()
|
||||||
if(NOT "${${_NAME_UPPER}_FOUND}" STREQUAL "FALSE")
|
if(NOT "${${_FOUND_VAR}}" STREQUAL "FALSE")
|
||||||
set(${_NAME_UPPER}_FOUND TRUE)
|
set(${_FOUND_VAR} TRUE)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
# component handling
|
# component handling
|
||||||
@ -222,7 +243,7 @@ function(FIND_PACKAGE_HANDLE_STANDARD_ARGS _NAME _FIRST_ARG)
|
|||||||
set(MISSING_COMPONENTS_MSG "${MISSING_COMPONENTS_MSG} ${comp}")
|
set(MISSING_COMPONENTS_MSG "${MISSING_COMPONENTS_MSG} ${comp}")
|
||||||
|
|
||||||
if(${_NAME}_FIND_REQUIRED_${comp})
|
if(${_NAME}_FIND_REQUIRED_${comp})
|
||||||
set(${_NAME_UPPER}_FOUND FALSE)
|
set(${_FOUND_VAR} FALSE)
|
||||||
set(MISSING_VARS "${MISSING_VARS} ${comp}")
|
set(MISSING_VARS "${MISSING_VARS} ${comp}")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
@ -276,12 +297,12 @@ function(FIND_PACKAGE_HANDLE_STANDARD_ARGS _NAME _FIRST_ARG)
|
|||||||
if(VERSION_OK)
|
if(VERSION_OK)
|
||||||
set(DETAILS "${DETAILS}[v${VERSION}(${${_NAME}_FIND_VERSION})]")
|
set(DETAILS "${DETAILS}[v${VERSION}(${${_NAME}_FIND_VERSION})]")
|
||||||
else()
|
else()
|
||||||
set(${_NAME_UPPER}_FOUND FALSE)
|
set(${_FOUND_VAR} FALSE)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
|
||||||
# print the result:
|
# print the result:
|
||||||
if (${_NAME_UPPER}_FOUND)
|
if (${_FOUND_VAR})
|
||||||
FIND_PACKAGE_MESSAGE(${_NAME} "Found ${_NAME}: ${${_FIRST_REQUIRED_VAR}} ${VERSION_MSG} ${COMPONENT_MSG}" "${DETAILS}")
|
FIND_PACKAGE_MESSAGE(${_NAME} "Found ${_NAME}: ${${_FIRST_REQUIRED_VAR}} ${VERSION_MSG} ${COMPONENT_MSG}" "${DETAILS}")
|
||||||
else ()
|
else ()
|
||||||
|
|
||||||
@ -297,6 +318,6 @@ function(FIND_PACKAGE_HANDLE_STANDARD_ARGS _NAME _FIRST_ARG)
|
|||||||
|
|
||||||
endif ()
|
endif ()
|
||||||
|
|
||||||
set(${_NAME_UPPER}_FOUND ${${_NAME_UPPER}_FOUND} PARENT_SCOPE)
|
set(${_FOUND_VAR} ${${_FOUND_VAR}} PARENT_SCOPE)
|
||||||
|
|
||||||
endfunction()
|
endfunction()
|
||||||
|
@ -43,6 +43,16 @@ if(NOT LOTSOFCOMPONENTS_FOUND)
|
|||||||
message(SEND_ERROR "LotsOfComponents not found !")
|
message(SEND_ERROR "LotsOfComponents not found !")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
find_package(SomePackage)
|
||||||
|
if(NOT SomePackage_FOUND)
|
||||||
|
message(SEND_ERROR "SomePackage with FOUND_VAR SomePackage_FOUND not found !")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
find_package(UpperCasePackage)
|
||||||
|
if(NOT UPPERCASEPACKAGE_FOUND)
|
||||||
|
message(SEND_ERROR "UpperCasePackage with FOUND_VAR UPPERCASEPACKAGE_FOUND not found !")
|
||||||
|
endif()
|
||||||
|
|
||||||
#-----------------------------------------------------------------------------
|
#-----------------------------------------------------------------------------
|
||||||
# Test system package registry if possible.
|
# Test system package registry if possible.
|
||||||
set(CMakeTestSystemPackage "")
|
set(CMakeTestSystemPackage "")
|
||||||
|
6
Tests/FindPackageTest/FindSomePackage.cmake
Normal file
6
Tests/FindPackageTest/FindSomePackage.cmake
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
set(SOP_FOO TRUE)
|
||||||
|
|
||||||
|
include(FindPackageHandleStandardArgs)
|
||||||
|
|
||||||
|
find_package_handle_standard_args(SomePackage REQUIRED_VARS SOP_FOO
|
||||||
|
FOUND_VAR SomePackage_FOUND )
|
6
Tests/FindPackageTest/FindUpperCasePackage.cmake
Normal file
6
Tests/FindPackageTest/FindUpperCasePackage.cmake
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
set(UCP_FOO TRUE)
|
||||||
|
|
||||||
|
include(FindPackageHandleStandardArgs)
|
||||||
|
|
||||||
|
find_package_handle_standard_args(UpperCasePackage REQUIRED_VARS UCP_FOO
|
||||||
|
FOUND_VAR UPPERCASEPACKAGE_FOUND )
|
@ -56,6 +56,7 @@ if(UNIX AND "${CMAKE_TEST_GENERATOR}" MATCHES "Unix Makefiles")
|
|||||||
add_RunCMake_test(CompilerChange)
|
add_RunCMake_test(CompilerChange)
|
||||||
endif()
|
endif()
|
||||||
add_RunCMake_test(ExternalData)
|
add_RunCMake_test(ExternalData)
|
||||||
|
add_RunCMake_test(FPHSA)
|
||||||
add_RunCMake_test(GeneratorExpression)
|
add_RunCMake_test(GeneratorExpression)
|
||||||
add_RunCMake_test(GeneratorToolset)
|
add_RunCMake_test(GeneratorToolset)
|
||||||
add_RunCMake_test(TargetPropertyGeneratorExpressions)
|
add_RunCMake_test(TargetPropertyGeneratorExpressions)
|
||||||
|
1
Tests/RunCMake/FPHSA/BadFoundVar-result.txt
Normal file
1
Tests/RunCMake/FPHSA/BadFoundVar-result.txt
Normal file
@ -0,0 +1 @@
|
|||||||
|
1
|
7
Tests/RunCMake/FPHSA/BadFoundVar-stderr.txt
Normal file
7
Tests/RunCMake/FPHSA/BadFoundVar-stderr.txt
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
CMake Error at .*/Modules/FindPackageHandleStandardArgs.cmake:[0-9]+ \(message\):
|
||||||
|
The argument for FOUND_VAR is "badfoundvar_FOUND", but only
|
||||||
|
"BadFoundVar_FOUND" and "BADFOUNDVAR_FOUND" are valid names.
|
||||||
|
Call Stack \(most recent call first\):
|
||||||
|
FindBadFoundVar.cmake:5 \(find_package_handle_standard_args\)
|
||||||
|
BadFoundVar.cmake:3 \(find_package\)
|
||||||
|
CMakeLists.txt:3 \(include\)
|
3
Tests/RunCMake/FPHSA/BadFoundVar.cmake
Normal file
3
Tests/RunCMake/FPHSA/BadFoundVar.cmake
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}")
|
||||||
|
|
||||||
|
find_package(BadFoundVar REQUIRED)
|
3
Tests/RunCMake/FPHSA/CMakeLists.txt
Normal file
3
Tests/RunCMake/FPHSA/CMakeLists.txt
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
cmake_minimum_required(VERSION 2.8)
|
||||||
|
project(${RunCMake_TEST} NONE)
|
||||||
|
include(${RunCMake_TEST}.cmake)
|
6
Tests/RunCMake/FPHSA/FindBadFoundVar.cmake
Normal file
6
Tests/RunCMake/FPHSA/FindBadFoundVar.cmake
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
set(BFV_FOO TRUE)
|
||||||
|
|
||||||
|
include(FindPackageHandleStandardArgs)
|
||||||
|
|
||||||
|
find_package_handle_standard_args(BadFoundVar REQUIRED_VARS BFV_FOO
|
||||||
|
FOUND_VAR badfoundvar_FOUND )
|
3
Tests/RunCMake/FPHSA/RunCMakeTest.cmake
Normal file
3
Tests/RunCMake/FPHSA/RunCMakeTest.cmake
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
include(RunCMake)
|
||||||
|
|
||||||
|
run_cmake(BadFoundVar)
|
Loading…
x
Reference in New Issue
Block a user