mirror of
https://github.com/Kitware/CMake.git
synced 2025-10-14 02:08:27 +08:00
Merge topic 'FPHSA-name-mismatches-chained-via-include'
98844ec9db
FPHSA: detect inclusion between find modules
Acked-by: Kitware Robot <kwrobot@kitware.com>
Acked-by: Logan Barnes <barneslt63@gmail.com>
Merge-request: !5107
This commit is contained in:
@@ -412,8 +412,15 @@ if(OPENGL_EGL_INCLUDE_DIR)
|
|||||||
endif()
|
endif()
|
||||||
|
|
||||||
include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake)
|
include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake)
|
||||||
|
if (CMAKE_FIND_PACKAGE_NAME STREQUAL "GLU")
|
||||||
|
# FindGLU include()'s this module. It's an old pattern, but rather than
|
||||||
|
# trying to suppress this from outside the module (which is then sensitive to
|
||||||
|
# the contents, detect the case in this module and suppress it explicitly.
|
||||||
|
set(FPHSA_NAME_MISMATCHED 1)
|
||||||
|
endif ()
|
||||||
FIND_PACKAGE_HANDLE_STANDARD_ARGS(OpenGL REQUIRED_VARS ${_OpenGL_REQUIRED_VARS}
|
FIND_PACKAGE_HANDLE_STANDARD_ARGS(OpenGL REQUIRED_VARS ${_OpenGL_REQUIRED_VARS}
|
||||||
HANDLE_COMPONENTS)
|
HANDLE_COMPONENTS)
|
||||||
|
unset(FPHSA_NAME_MISMATCHED)
|
||||||
unset(_OpenGL_REQUIRED_VARS)
|
unset(_OpenGL_REQUIRED_VARS)
|
||||||
|
|
||||||
# OpenGL:: targets
|
# OpenGL:: targets
|
||||||
|
@@ -73,8 +73,15 @@ endif()
|
|||||||
set(PERL ${PERL_EXECUTABLE})
|
set(PERL ${PERL_EXECUTABLE})
|
||||||
|
|
||||||
include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake)
|
include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake)
|
||||||
|
if (CMAKE_FIND_PACKAGE_NAME STREQUAL "PerlLibs")
|
||||||
|
# FindPerlLibs include()'s this module. It's an old pattern, but rather than
|
||||||
|
# trying to suppress this from outside the module (which is then sensitive to
|
||||||
|
# the contents, detect the case in this module and suppress it explicitly.
|
||||||
|
set(FPHSA_NAME_MISMATCHED 1)
|
||||||
|
endif ()
|
||||||
FIND_PACKAGE_HANDLE_STANDARD_ARGS(Perl
|
FIND_PACKAGE_HANDLE_STANDARD_ARGS(Perl
|
||||||
REQUIRED_VARS PERL_EXECUTABLE
|
REQUIRED_VARS PERL_EXECUTABLE
|
||||||
VERSION_VAR PERL_VERSION_STRING)
|
VERSION_VAR PERL_VERSION_STRING)
|
||||||
|
unset(FPHSA_NAME_MISMATCHED)
|
||||||
|
|
||||||
mark_as_advanced(PERL_EXECUTABLE)
|
mark_as_advanced(PERL_EXECUTABLE)
|
||||||
|
@@ -201,9 +201,16 @@ endif()
|
|||||||
|
|
||||||
# if the include a library are found then we have it
|
# if the include a library are found then we have it
|
||||||
include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake)
|
include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake)
|
||||||
|
if (CMAKE_FIND_PACKAGE_NAME STREQUAL "Qt")
|
||||||
|
# FindQt include()'s this module. It's an old pattern, but rather than trying
|
||||||
|
# to suppress this from outside the module (which is then sensitive to the
|
||||||
|
# contents, detect the case in this module and suppress it explicitly.
|
||||||
|
set(FPHSA_NAME_MISMATCHED 1)
|
||||||
|
endif ()
|
||||||
FIND_PACKAGE_HANDLE_STANDARD_ARGS(Qt3
|
FIND_PACKAGE_HANDLE_STANDARD_ARGS(Qt3
|
||||||
REQUIRED_VARS QT_QT_LIBRARY QT_INCLUDE_DIR QT_MOC_EXECUTABLE
|
REQUIRED_VARS QT_QT_LIBRARY QT_INCLUDE_DIR QT_MOC_EXECUTABLE
|
||||||
VERSION_VAR QT_VERSION_STRING)
|
VERSION_VAR QT_VERSION_STRING)
|
||||||
|
unset(FPHSA_NAME_MISMATCHED)
|
||||||
set(QT_FOUND ${QT3_FOUND} )
|
set(QT_FOUND ${QT3_FOUND} )
|
||||||
|
|
||||||
if(QT_FOUND)
|
if(QT_FOUND)
|
||||||
|
@@ -1318,10 +1318,18 @@ if (NOT QT_VERSION_MAJOR EQUAL 4)
|
|||||||
endif()
|
endif()
|
||||||
endif()
|
endif()
|
||||||
else()
|
else()
|
||||||
|
if (CMAKE_FIND_PACKAGE_NAME STREQUAL "Qt")
|
||||||
|
# FindQt include()'s this module. It's an old pattern, but rather than
|
||||||
|
# trying to suppress this from outside the module (which is then sensitive
|
||||||
|
# to the contents, detect the case in this module and suppress it
|
||||||
|
# explicitly.
|
||||||
|
set(FPHSA_NAME_MISMATCHED 1)
|
||||||
|
endif ()
|
||||||
FIND_PACKAGE_HANDLE_STANDARD_ARGS(Qt4 FOUND_VAR Qt4_FOUND
|
FIND_PACKAGE_HANDLE_STANDARD_ARGS(Qt4 FOUND_VAR Qt4_FOUND
|
||||||
REQUIRED_VARS ${_QT4_FOUND_REQUIRED_VARS}
|
REQUIRED_VARS ${_QT4_FOUND_REQUIRED_VARS}
|
||||||
VERSION_VAR QTVERSION
|
VERSION_VAR QTVERSION
|
||||||
)
|
)
|
||||||
|
unset(FPHSA_NAME_MISMATCHED)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
#######################################
|
#######################################
|
||||||
|
@@ -223,6 +223,12 @@ find_path(TK_INCLUDE_PATH
|
|||||||
|
|
||||||
include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake)
|
include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake)
|
||||||
|
|
||||||
|
if (CMAKE_FIND_PACKAGE_NAME STREQUAL "TclStub")
|
||||||
|
# FindTclStub include()'s this module. It's an old pattern, but rather than
|
||||||
|
# trying to suppress this from outside the module (which is then sensitive to
|
||||||
|
# the contents, detect the case in this module and suppress it explicitly.
|
||||||
|
set(FPHSA_NAME_MISMATCHED 1)
|
||||||
|
endif ()
|
||||||
FIND_PACKAGE_HANDLE_STANDARD_ARGS(TCL DEFAULT_MSG TCL_LIBRARY TCL_INCLUDE_PATH)
|
FIND_PACKAGE_HANDLE_STANDARD_ARGS(TCL DEFAULT_MSG TCL_LIBRARY TCL_INCLUDE_PATH)
|
||||||
set(FPHSA_NAME_MISMATCHED 1)
|
set(FPHSA_NAME_MISMATCHED 1)
|
||||||
set(TCLTK_FIND_REQUIRED ${TCL_FIND_REQUIRED})
|
set(TCLTK_FIND_REQUIRED ${TCL_FIND_REQUIRED})
|
||||||
|
@@ -85,8 +85,17 @@ if(TCL_TCLSH)
|
|||||||
endif()
|
endif()
|
||||||
|
|
||||||
include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake)
|
include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake)
|
||||||
|
if (CMAKE_FIND_PACKAGE_NAME STREQUAL "TCL" OR
|
||||||
|
CMAKE_FIND_PACKAGE_NAME STREQUAL "TclStub")
|
||||||
|
# FindTCL include()'s this module. It's an old pattern, but rather than
|
||||||
|
# trying to suppress this from outside the module (which is then sensitive to
|
||||||
|
# the contents, detect the case in this module and suppress it explicitly.
|
||||||
|
# Transitively, FindTclStub includes FindTCL.
|
||||||
|
set(FPHSA_NAME_MISMATCHED 1)
|
||||||
|
endif ()
|
||||||
FIND_PACKAGE_HANDLE_STANDARD_ARGS(Tclsh
|
FIND_PACKAGE_HANDLE_STANDARD_ARGS(Tclsh
|
||||||
REQUIRED_VARS TCL_TCLSH
|
REQUIRED_VARS TCL_TCLSH
|
||||||
VERSION_VAR TCLSH_VERSION_STRING)
|
VERSION_VAR TCLSH_VERSION_STRING)
|
||||||
|
unset(FPHSA_NAME_MISMATCHED)
|
||||||
|
|
||||||
mark_as_advanced(TCL_TCLSH)
|
mark_as_advanced(TCL_TCLSH)
|
||||||
|
@@ -413,9 +413,17 @@ if (UNIX)
|
|||||||
endif ()
|
endif ()
|
||||||
|
|
||||||
include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake)
|
include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake)
|
||||||
|
if (CMAKE_FIND_PACKAGE_NAME STREQUAL "FLTK")
|
||||||
|
# FindFLTK include()'s this module. It's an old pattern, but rather than
|
||||||
|
# trying to suppress this from outside the module (which is then sensitive
|
||||||
|
# to the contents, detect the case in this module and suppress it
|
||||||
|
# explicitly.
|
||||||
|
set(FPHSA_NAME_MISMATCHED 1)
|
||||||
|
endif ()
|
||||||
find_package_handle_standard_args(X11
|
find_package_handle_standard_args(X11
|
||||||
REQUIRED_VARS X11_X11_INCLUDE_PATH X11_X11_LIB
|
REQUIRED_VARS X11_X11_INCLUDE_PATH X11_X11_LIB
|
||||||
HANDLE_COMPONENTS)
|
HANDLE_COMPONENTS)
|
||||||
|
unset(FPHSA_NAME_MISMATCHED)
|
||||||
|
|
||||||
if(X11_FOUND)
|
if(X11_FOUND)
|
||||||
include(${CMAKE_CURRENT_LIST_DIR}/CheckFunctionExists.cmake)
|
include(${CMAKE_CURRENT_LIST_DIR}/CheckFunctionExists.cmake)
|
||||||
|
Reference in New Issue
Block a user