Force wxWidgets to version 3.0.0 or later and OSX build fixes.
* Add version detection to FindwxWidgets.cmake * Convert commands and macro names to lower case in FindwxWidgets.cmake. * Use find_package_handle_standard_args() to handle version comparison. * Update FindPackageHandleStandardArgs.cmake from CMake 3.0.2 to get the latest bug fixes. * Add an option to ignore building every OSX dependency from source and use find_package() the way it is supposed to work unless the developer specifically requests building everything from source.
This commit is contained in:
parent
86042eee00
commit
ed19967099
111
CMakeLists.txt
111
CMakeLists.txt
|
@ -35,36 +35,39 @@ set( USE_KIWAY_DLLS true ) # this is now mandatory, the code is the same anyway
|
||||||
# have this option turned OFF, the xml export's referential integrity is broken
|
# have this option turned OFF, the xml export's referential integrity is broken
|
||||||
# on library part name. Hence the default is ON now, as of 29-Jan-2014.
|
# on library part name. Hence the default is ON now, as of 29-Jan-2014.
|
||||||
option( KICAD_KEEPCASE
|
option( KICAD_KEEPCASE
|
||||||
"ON= case specific string matching on component names, OFF= match names as if they were spelt using uppercase."
|
"Use case sensitive string matching for component names (default ON)."
|
||||||
ON
|
ON
|
||||||
)
|
)
|
||||||
|
|
||||||
option( USE_WX_GRAPHICS_CONTEXT
|
option( USE_WX_GRAPHICS_CONTEXT
|
||||||
"Use wxGraphicsContext for rendering ( default OFF). Warning, this is experimental" )
|
"Use wxGraphicsContext for rendering (default OFF). Warning, this is experimental" )
|
||||||
|
|
||||||
option( USE_WX_OVERLAY
|
option( USE_WX_OVERLAY
|
||||||
"Use wxOverlay: Always ON for MAC ( default OFF). Warning, this is experimental" )
|
"Use wxOverlay: Always ON for MAC (default OFF). Warning, this is experimental" )
|
||||||
|
|
||||||
option( KICAD_SCRIPTING
|
option( KICAD_SCRIPTING
|
||||||
"set this option ON to build the scripting support inside kicad binaries"
|
"Build the Python scripting support inside KiCad binaries (default OFF)."
|
||||||
)
|
)
|
||||||
|
|
||||||
option( KICAD_SCRIPTING_MODULES
|
option( KICAD_SCRIPTING_MODULES
|
||||||
"set this option ON to build kicad modules that can be used from scripting languages"
|
"Build KiCad Python modules that can be used from scripting languages (default OFF)."
|
||||||
)
|
)
|
||||||
|
|
||||||
option( KICAD_SCRIPTING_WXPYTHON
|
option( KICAD_SCRIPTING_WXPYTHON
|
||||||
"set this option ON to build wxpython implementation for wx interface building in python and py.shell"
|
"Build wxPython implementation for wx interface building in Python and py.shell (default OFF)."
|
||||||
)
|
)
|
||||||
|
|
||||||
option( KICAD_BUILD_STATIC
|
option( KICAD_BUILD_STATIC
|
||||||
"Builds Kicad and all libraries static"
|
"Build dependencies as static libraries. OSX only. (default OFF)."
|
||||||
)
|
)
|
||||||
|
|
||||||
option( KICAD_BUILD_DYNAMIC
|
option( KICAD_BUILD_DYNAMIC
|
||||||
"Builds Kicad and all libraries dynamic (required for wxPython)"
|
"Build dependencies as shared libraries. Required for wxPython support. OXS only. (default OFF)."
|
||||||
)
|
)
|
||||||
|
|
||||||
|
option( USE_OSX_DEPS_BUILDER
|
||||||
|
"Build dependencies from source instead of dependencies installed on system. OSX only. (default OFF)."
|
||||||
|
)
|
||||||
|
|
||||||
# WARNING: KiCad developers strongly advise you to build Boost with supplied patches,
|
# WARNING: KiCad developers strongly advise you to build Boost with supplied patches,
|
||||||
# as it is known to work with KiCad. Other versions may contain bugs that may result
|
# as it is known to work with KiCad. Other versions may contain bugs that may result
|
||||||
|
@ -269,7 +272,6 @@ if( USE_WX_GRAPHICS_CONTEXT )
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Allow user to override the default settings for adding images to menu items. By default
|
# Allow user to override the default settings for adding images to menu items. By default
|
||||||
# images in menu items are enabled on all platforms except OSX. This can be over ridden by
|
# images in menu items are enabled on all platforms except OSX. This can be over ridden by
|
||||||
# defining -DUSE_IMAGES_IN_MENUS=ON/OFF to force the preferred behavior.
|
# defining -DUSE_IMAGES_IN_MENUS=ON/OFF to force the preferred behavior.
|
||||||
|
@ -353,9 +355,30 @@ include( ExternalProject )
|
||||||
#================================================
|
#================================================
|
||||||
include( CheckFindPackageResult )
|
include( CheckFindPackageResult )
|
||||||
|
|
||||||
|
##########################
|
||||||
|
# Find wxWidgets library #
|
||||||
|
##########################
|
||||||
|
# Here you can define what libraries of wxWidgets you need for your
|
||||||
|
# application. You can figure out what libraries you need here;
|
||||||
|
# http://www.wxwidgets.org/manuals/2.8/wx_librarieslist.html
|
||||||
|
|
||||||
# Turn on wxWidgets compatibility mode for some classes
|
# Turn on wxWidgets compatibility mode for some classes
|
||||||
add_definitions( -DWX_COMPATIBILITY )
|
add_definitions( -DWX_COMPATIBILITY )
|
||||||
|
|
||||||
|
# See line 41 of CMakeModules/FindwxWidgets.cmake
|
||||||
|
set( wxWidgets_CONFIG_OPTIONS --static=no )
|
||||||
|
|
||||||
|
# On Apple only wxwidgets 2.9 or higher doesn't need to find aui part of base
|
||||||
|
# Seems no longer needed on wx-3
|
||||||
|
if( APPLE AND ( KICAD_SCRIPTING OR KICAD_SCRIPTING_MODULES OR KICAD_SCRIPTING_WXPYTHON) )
|
||||||
|
find_package( wxWidgets 3.0.0 COMPONENTS gl adv html core net base xml REQUIRED )
|
||||||
|
else()
|
||||||
|
find_package( wxWidgets 3.0.0 COMPONENTS gl aui adv html core net base xml REQUIRED )
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# Include wxWidgets macros.
|
||||||
|
include( ${wxWidgets_USE_FILE} )
|
||||||
|
|
||||||
#######################
|
#######################
|
||||||
# Find OpenGL library #
|
# Find OpenGL library #
|
||||||
#######################
|
#######################
|
||||||
|
@ -372,7 +395,10 @@ check_find_package_result( OPENGL_FOUND "OpenGL" )
|
||||||
# Always defined, empty if no libraries are to be built
|
# Always defined, empty if no libraries are to be built
|
||||||
add_custom_target( lib-dependencies )
|
add_custom_target( lib-dependencies )
|
||||||
|
|
||||||
if( KICAD_BUILD_STATIC OR KICAD_BUILD_DYNAMIC )
|
# Only download and build all dependencies from source on OSX if the user specifically requests
|
||||||
|
# it. Otherwise, respect the developers wishes to use the dependencies already installed on
|
||||||
|
# their systme.
|
||||||
|
if( APPLE AND USE_OSX_DEPS_BUILDER )
|
||||||
|
|
||||||
# This should be built in all cases, if swig exec is not avaiable
|
# This should be built in all cases, if swig exec is not avaiable
|
||||||
# will be impossible also enable SCRIPTING being for PCBNEW required immediately
|
# will be impossible also enable SCRIPTING being for PCBNEW required immediately
|
||||||
|
@ -417,31 +443,24 @@ if( KICAD_BUILD_STATIC OR KICAD_BUILD_DYNAMIC )
|
||||||
|
|
||||||
set( PYTHON_DEST ${LIBWXPYTHON_ROOT}/wxPython/lib/python2.6/site-packages )
|
set( PYTHON_DEST ${LIBWXPYTHON_ROOT}/wxPython/lib/python2.6/site-packages )
|
||||||
|
|
||||||
set(wxWidgets_BIN_DIR ${LIBWXPYTHON_ROOT}/bin/wxrc )
|
|
||||||
set(wxWidgets_CONFIG_EXECUTABLE ${LIBWXPYTHON_ROOT}/bin/wx-config )
|
|
||||||
set(wxWidgets_INCLUDE_DIRS ${LIBWXPYTHON_ROOT}/include/wx-3.0 )
|
|
||||||
set(wxWidgets_LIBRARY_DIRS ${LIBWXPYTHON_ROOT}/lib )
|
|
||||||
|
|
||||||
add_dependencies( lib-dependencies libwxpython )
|
add_dependencies( lib-dependencies libwxpython )
|
||||||
add_dependencies( lib-dependencies swig )
|
add_dependencies( lib-dependencies swig )
|
||||||
|
|
||||||
else()
|
else()
|
||||||
include( download_wxwidgets )
|
include( download_wxwidgets )
|
||||||
add_dependencies( lib-dependencies libwx )
|
add_dependencies( lib-dependencies libwx )
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
include( download_libpng )
|
include( download_libpng )
|
||||||
|
|
||||||
include( download_pkgconfig )
|
include( download_pkgconfig )
|
||||||
set( PKG_CONFIG_EXECUTABLE "${PKGCONFIG_ROOT}/bin/pkg-config" )
|
set( PKG_CONFIG_EXECUTABLE "${PKGCONFIG_ROOT}/bin/pkg-config" )
|
||||||
include( download_glew )
|
include( download_glew )
|
||||||
set( GLEW_GLEW_LIBRARY "${GLEW_ROOT}/lib/libGLEW.a" )
|
set( GLEW_GLEW_LIBRARY "${GLEW_ROOT}/lib/libGLEW.a" )
|
||||||
set( GLEW_INCLUDE_DIR "${GLEW_ROOT}/include" )
|
set( GLEW_INCLUDE_DIR "${GLEW_ROOT}/include" )
|
||||||
include( download_pixman )
|
include( download_pixman )
|
||||||
set( PIXMAN_LIBRARY "${PIXMAN_ROOT}/lib/libpixman-1.a" )
|
set( PIXMAN_LIBRARY "${PIXMAN_ROOT}/lib/libpixman-1.a" )
|
||||||
include( download_cairo )
|
include( download_cairo )
|
||||||
set( CAIRO_INCLUDE_DIR "${CAIRO_ROOT}/include/cairo" )
|
set( CAIRO_INCLUDE_DIR "${CAIRO_ROOT}/include/cairo" )
|
||||||
set( CAIRO_LIBRARY "${CAIRO_ROOT}/lib/libcairo.a" )
|
set( CAIRO_LIBRARY "${CAIRO_ROOT}/lib/libcairo.a" )
|
||||||
|
|
||||||
add_dependencies( lib-dependencies boost )
|
add_dependencies( lib-dependencies boost )
|
||||||
add_dependencies( lib-dependencies cairo )
|
add_dependencies( lib-dependencies cairo )
|
||||||
|
@ -450,11 +469,13 @@ if( KICAD_BUILD_STATIC OR KICAD_BUILD_DYNAMIC )
|
||||||
add_dependencies( lib-dependencies pkgconfig )
|
add_dependencies( lib-dependencies pkgconfig )
|
||||||
|
|
||||||
if( KICAD_BUILD_DYNAMIC AND APPLE )
|
if( KICAD_BUILD_DYNAMIC AND APPLE )
|
||||||
add_custom_target( osx_fix_bundles ALL DEPENDS cvpcb eeschema gerbview kicad pcbnew bitmap2component pcb_calculator pl_editor)
|
add_custom_target( osx_fix_bundles ALL DEPENDS
|
||||||
add_custom_command(TARGET osx_fix_bundles POST_BUILD COMMAND ${PROJECT_SOURCE_DIR}/scripts/osx_fixbundle.sh ${PROJECT_SOURCE_DIR} COMMENT "Migrating dylibs to bundles")
|
cvpcb eeschema gerbview kicad pcbnew bitmap2component pcb_calculator pl_editor)
|
||||||
|
add_custom_command(TARGET osx_fix_bundles
|
||||||
|
POST_BUILD COMMAND ${PROJECT_SOURCE_DIR}/scripts/osx_fixbundle.sh ${PROJECT_SOURCE_DIR}
|
||||||
|
COMMENT "Migrating dylibs to bundles")
|
||||||
endif()
|
endif()
|
||||||
|
endif()
|
||||||
endif( KICAD_BUILD_STATIC OR KICAD_BUILD_DYNAMIC)
|
|
||||||
|
|
||||||
#####################
|
#####################
|
||||||
# Find GLEW library #
|
# Find GLEW library #
|
||||||
|
@ -492,31 +513,6 @@ else()
|
||||||
include( download_boost )
|
include( download_boost )
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
##########################
|
|
||||||
# Find wxWidgets library #
|
|
||||||
##########################
|
|
||||||
# Here you can define what libraries of wxWidgets you need for your
|
|
||||||
# application. You can figure out what libraries you need here;
|
|
||||||
# http://www.wxwidgets.org/manuals/2.8/wx_librarieslist.html
|
|
||||||
|
|
||||||
# See line 41 of CMakeModules/FindwxWidgets.cmake
|
|
||||||
set( wxWidgets_CONFIG_OPTIONS --static=no )
|
|
||||||
|
|
||||||
# On Apple only wxwidgets 2.9 or higher doesn't need to find aui part of base
|
|
||||||
# Seems no more needed on wx-3
|
|
||||||
if( APPLE AND ( KICAD_SCRIPTING OR KICAD_SCRIPTING_MODULES OR KICAD_SCRIPTING_WXPYTHON) )
|
|
||||||
find_package( wxWidgets COMPONENTS gl adv html core net base xml QUIET )
|
|
||||||
else()
|
|
||||||
find_package( wxWidgets COMPONENTS gl aui adv html core net base xml QUIET )
|
|
||||||
endif()
|
|
||||||
|
|
||||||
if( NOT (KICAD_BUILD_STATIC OR KICAD_BUILD_DYNAMIC) )
|
|
||||||
check_find_package_result( wxWidgets_FOUND "wxWidgets" )
|
|
||||||
endif()
|
|
||||||
|
|
||||||
# Include wxWidgets macros.
|
|
||||||
include( ${wxWidgets_USE_FILE} )
|
|
||||||
|
|
||||||
# Include MinGW resource compiler.
|
# Include MinGW resource compiler.
|
||||||
include( MinGWResourceCompiler )
|
include( MinGWResourceCompiler )
|
||||||
|
|
||||||
|
@ -553,16 +549,8 @@ set( INC_AFTER
|
||||||
|
|
||||||
# Find Python and other scripting resources
|
# Find Python and other scripting resources
|
||||||
if( KICAD_SCRIPTING OR KICAD_SCRIPTING_MODULES )
|
if( KICAD_SCRIPTING OR KICAD_SCRIPTING_MODULES )
|
||||||
|
|
||||||
if( APPLE )
|
|
||||||
set( PYTHON_LIBRARY /System/Library/Frameworks/Python.framework/Versions/2.6/Python )
|
|
||||||
set( PYTHON_INCLUDE_DIR /System/Library/Frameworks/Python.framework/Versions//2.6/include/python2.6 )
|
|
||||||
set( PythonInterp_FIND_VERSION 2.6 )
|
|
||||||
set( PythonLibs_FIND_VERSION 2.6 )
|
|
||||||
endif()
|
|
||||||
|
|
||||||
# force a python version < 3.0
|
# force a python version < 3.0
|
||||||
set( PythonInterp_FIND_VERSION 2.6)
|
set( PythonInterp_FIND_VERSION 2.6 )
|
||||||
set( PythonLibs_FIND_VERSION 2.6 )
|
set( PythonLibs_FIND_VERSION 2.6 )
|
||||||
|
|
||||||
find_package( PythonInterp )
|
find_package( PythonInterp )
|
||||||
|
@ -572,6 +560,7 @@ if( KICAD_SCRIPTING OR KICAD_SCRIPTING_MODULES )
|
||||||
if( NOT PYTHON_VERSION_MAJOR EQUAL 2 )
|
if( NOT PYTHON_VERSION_MAJOR EQUAL 2 )
|
||||||
message( FATAL_ERROR "Python 2.x is required." )
|
message( FATAL_ERROR "Python 2.x is required." )
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
# Get the correct Python site package install path from the Python interpreter found by
|
# Get the correct Python site package install path from the Python interpreter found by
|
||||||
# FindPythonInterp unless the user specifically defined a custom path.
|
# FindPythonInterp unless the user specifically defined a custom path.
|
||||||
if( NOT PYTHON_SITE_PACKAGE_PATH )
|
if( NOT PYTHON_SITE_PACKAGE_PATH )
|
||||||
|
|
|
@ -1,72 +1,117 @@
|
||||||
# FIND_PACKAGE_HANDLE_STANDARD_ARGS(<name> ... )
|
#.rst:
|
||||||
|
# FindPackageHandleStandardArgs
|
||||||
|
# -----------------------------
|
||||||
|
#
|
||||||
|
#
|
||||||
|
#
|
||||||
|
# FIND_PACKAGE_HANDLE_STANDARD_ARGS(<name> ... )
|
||||||
#
|
#
|
||||||
# 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
|
||||||
# It also sets the <UPPERCASED_NAME>_FOUND variable.
|
# find_package(). It also sets the <packagename>_FOUND variable. The
|
||||||
# The package is considered found if all variables <var1>... listed contain
|
# package is considered found if all variables <var1>... listed contain
|
||||||
# valid results, e.g. valid filepaths.
|
# valid results, e.g. valid filepaths.
|
||||||
#
|
#
|
||||||
# There are two modes of this function. The first argument in both modes is
|
# There are two modes of this function. The first argument in both
|
||||||
# the name of the Find-module where it is called (in original casing).
|
# modes is the name of the Find-module where it is called (in original
|
||||||
|
# casing).
|
||||||
#
|
#
|
||||||
# The first simple mode looks like this:
|
# The first simple mode looks like this:
|
||||||
# FIND_PACKAGE_HANDLE_STANDARD_ARGS(<name> (DEFAULT_MSG|"Custom failure message") <var1>...<varN> )
|
#
|
||||||
# If the variables <var1> to <varN> are all valid, then <UPPERCASED_NAME>_FOUND
|
# ::
|
||||||
# will be set to TRUE.
|
#
|
||||||
# If DEFAULT_MSG is given as second argument, then the function will generate
|
# FIND_PACKAGE_HANDLE_STANDARD_ARGS(<name> (DEFAULT_MSG|"Custom failure message") <var1>...<varN> )
|
||||||
# itself useful success and error messages. You can also supply a custom error message
|
#
|
||||||
# for the failure case. This is not recommended.
|
# If the variables <var1> to <varN> are all valid, then
|
||||||
|
# <UPPERCASED_NAME>_FOUND will be set to TRUE. If DEFAULT_MSG is given
|
||||||
|
# as second argument, then the function will generate itself useful
|
||||||
|
# success and error messages. You can also supply a custom error
|
||||||
|
# message 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>]
|
|
||||||
# [VERSION_VAR <versionvar>
|
|
||||||
# [CONFIG_MODE]
|
|
||||||
# [FAIL_MESSAGE "Custom failure message"] )
|
|
||||||
#
|
#
|
||||||
# As above, if <var1> through <varN> are all valid, <UPPERCASED_NAME>_FOUND
|
# ::
|
||||||
# will be set to TRUE.
|
#
|
||||||
# After REQUIRED_VARS the variables which are required for this package are listed.
|
# FIND_PACKAGE_HANDLE_STANDARD_ARGS(NAME [FOUND_VAR <resultVar>]
|
||||||
# Following VERSION_VAR the name of the variable can be specified which holds
|
# [REQUIRED_VARS <var1>...<varN>]
|
||||||
# the version of the package which has been found. If this is done, this version
|
# [VERSION_VAR <versionvar>]
|
||||||
# will be checked against the (potentially) specified required version used
|
# [HANDLE_COMPONENTS]
|
||||||
# in the find_package() call. The EXACT keyword is also handled. The default
|
# [CONFIG_MODE]
|
||||||
# messages include information about the required version and the version
|
# [FAIL_MESSAGE "Custom failure message"] )
|
||||||
# which has been actually found, both if the version is ok or not.
|
#
|
||||||
# Use the option CONFIG_MODE if your FindXXX.cmake module is a wrapper for
|
#
|
||||||
# a find_package(... NO_MODULE) call, in this case all the information
|
#
|
||||||
# provided by the config-mode of find_package() will be evaluated
|
# In this mode, the name of the result-variable can be set either to
|
||||||
# automatically.
|
# either <UPPERCASED_NAME>_FOUND or <OriginalCase_Name>_FOUND using the
|
||||||
# Via FAIL_MESSAGE a custom failure message can be specified, if this is not
|
# FOUND_VAR option. Other names for the result-variable are not
|
||||||
# used, the default message will be displayed.
|
# 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. 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 will be checked against the (potentially) specified required
|
||||||
|
# version used in the find_package() call. The EXACT keyword is also
|
||||||
|
# handled. The default messages include information about the required
|
||||||
|
# version and the version 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 handling them. In this case,
|
||||||
|
# find_package_handle_standard_args() will report 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
|
||||||
|
# ones listed after OPTIONAL_COMPONENTS) are missing. Use the option
|
||||||
|
# CONFIG_MODE if your FindXXX.cmake module is a wrapper for a
|
||||||
|
# find_package(... NO_MODULE) call. In this case VERSION_VAR will be
|
||||||
|
# set to <NAME>_VERSION and the macro will automatically check whether
|
||||||
|
# the Config module was found. Via FAIL_MESSAGE a custom failure
|
||||||
|
# message can be specified, if this is not used, the default message
|
||||||
|
# will be displayed.
|
||||||
#
|
#
|
||||||
# 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
|
||||||
# If it is not found and REQUIRED was used, it fails with FATAL_ERROR,
|
# TRUE. If it is not found and REQUIRED was used, it fails with
|
||||||
# independent whether QUIET was used or not.
|
# FATAL_ERROR, independent whether QUIET was used or not. If it is
|
||||||
# If it is found, success will be reported, including the content of <var1>.
|
# found, success will be reported, including the content of <var1>. On
|
||||||
# On repeated Cmake runs, the same message won't be printed again.
|
# repeated Cmake runs, the same message won't be printed again.
|
||||||
#
|
#
|
||||||
# Example for mode 2:
|
# Example for mode 2:
|
||||||
#
|
#
|
||||||
# FIND_PACKAGE_HANDLE_STANDARD_ARGS(BISON REQUIRED_VARS BISON_EXECUTABLE
|
# ::
|
||||||
# VERSION_VAR BISON_VERSION)
|
#
|
||||||
# In this case, BISON is considered to be found if the variable(s) listed
|
# find_package_handle_standard_args(LibXslt FOUND_VAR LibXslt_FOUND
|
||||||
# after REQUIRED_VAR are all valid, i.e. BISON_EXECUTABLE in this case.
|
# REQUIRED_VARS LibXslt_LIBRARIES LibXslt_INCLUDE_DIRS
|
||||||
# Also the version of BISON will be checked by using the version contained
|
# VERSION_VAR LibXslt_VERSION_STRING)
|
||||||
# in BISON_VERSION.
|
#
|
||||||
# Since no FAIL_MESSAGE is given, the default messages will be printed.
|
# In this case, LibXslt is considered to be found if the variable(s)
|
||||||
|
# listed after REQUIRED_VAR are all valid, i.e. LibXslt_LIBRARIES and
|
||||||
|
# LibXslt_INCLUDE_DIRS 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.
|
||||||
#
|
#
|
||||||
# Another example for mode 2:
|
# Another example for mode 2:
|
||||||
#
|
#
|
||||||
# FIND_PACKAGE(Automoc4 QUIET NO_MODULE HINTS /opt/automoc4)
|
# ::
|
||||||
# FIND_PACKAGE_HANDLE_STANDARD_ARGS(Automoc4 CONFIG_MODE)
|
#
|
||||||
# In this case, FindAutmoc4.cmake wraps a call to FIND_PACKAGE(Automoc4 NO_MODULE)
|
# find_package(Automoc4 QUIET NO_MODULE HINTS /opt/automoc4)
|
||||||
# and adds an additional search directory for automoc4.
|
# find_package_handle_standard_args(Automoc4 CONFIG_MODE)
|
||||||
# The following FIND_PACKAGE_HANDLE_STANDARD_ARGS() call produces a proper
|
#
|
||||||
|
# In this case, FindAutmoc4.cmake wraps a call to find_package(Automoc4
|
||||||
|
# NO_MODULE) 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
|
||||||
# success/error message.
|
# success/error message.
|
||||||
|
|
||||||
#=============================================================================
|
#=============================================================================
|
||||||
|
@ -82,179 +127,225 @@
|
||||||
# (To distribute this file outside of CMake, substitute the full
|
# (To distribute this file outside of CMake, substitute the full
|
||||||
# License text for the above reference.)
|
# License text for the above reference.)
|
||||||
|
|
||||||
INCLUDE(FindPackageMessage)
|
include(${CMAKE_CURRENT_LIST_DIR}/FindPackageMessage.cmake)
|
||||||
INCLUDE(CMakeParseArguments)
|
include(${CMAKE_CURRENT_LIST_DIR}/CMakeParseArguments.cmake)
|
||||||
|
|
||||||
# internal helper macro
|
# internal helper macro
|
||||||
MACRO(_FPHSA_FAILURE_MESSAGE _msg)
|
macro(_FPHSA_FAILURE_MESSAGE _msg)
|
||||||
IF (${_NAME}_FIND_REQUIRED)
|
if (${_NAME}_FIND_REQUIRED)
|
||||||
MESSAGE(FATAL_ERROR "${_msg}")
|
message(FATAL_ERROR "${_msg}")
|
||||||
ELSE (${_NAME}_FIND_REQUIRED)
|
else ()
|
||||||
IF (NOT ${_NAME}_FIND_QUIETLY)
|
if (NOT ${_NAME}_FIND_QUIETLY)
|
||||||
MESSAGE(STATUS "${_msg}")
|
message(STATUS "${_msg}")
|
||||||
ENDIF (NOT ${_NAME}_FIND_QUIETLY)
|
endif ()
|
||||||
ENDIF (${_NAME}_FIND_REQUIRED)
|
endif ()
|
||||||
ENDMACRO(_FPHSA_FAILURE_MESSAGE _msg)
|
endmacro()
|
||||||
|
|
||||||
|
|
||||||
# internal helper macro to generate the failure message when used in CONFIG_MODE:
|
# internal helper macro to generate the failure message when used in CONFIG_MODE:
|
||||||
MACRO(_FPHSA_HANDLE_FAILURE_CONFIG_MODE)
|
macro(_FPHSA_HANDLE_FAILURE_CONFIG_MODE)
|
||||||
# <name>_CONFIG is set, but FOUND is false, this means that some other of the REQUIRED_VARS was not found:
|
# <name>_CONFIG is set, but FOUND is false, this means that some other of the REQUIRED_VARS was not found:
|
||||||
IF(${_NAME}_CONFIG)
|
if(${_NAME}_CONFIG)
|
||||||
_FPHSA_FAILURE_MESSAGE("${FPHSA_FAIL_MESSAGE}: missing: ${MISSING_VARS} (found ${${_NAME}_CONFIG} ${VERSION_MSG})")
|
_FPHSA_FAILURE_MESSAGE("${FPHSA_FAIL_MESSAGE}: missing: ${MISSING_VARS} (found ${${_NAME}_CONFIG} ${VERSION_MSG})")
|
||||||
ELSE(${_NAME}_CONFIG)
|
else()
|
||||||
# If _CONSIDERED_CONFIGS is set, the config-file has been found, but no suitable version.
|
# If _CONSIDERED_CONFIGS is set, the config-file has been found, but no suitable version.
|
||||||
# List them all in the error message:
|
# List them all in the error message:
|
||||||
IF(${_NAME}_CONSIDERED_CONFIGS)
|
if(${_NAME}_CONSIDERED_CONFIGS)
|
||||||
SET(configsText "")
|
set(configsText "")
|
||||||
LIST(LENGTH ${_NAME}_CONSIDERED_CONFIGS configsCount)
|
list(LENGTH ${_NAME}_CONSIDERED_CONFIGS configsCount)
|
||||||
MATH(EXPR configsCount "${configsCount} - 1")
|
math(EXPR configsCount "${configsCount} - 1")
|
||||||
FOREACH(currentConfigIndex RANGE ${configsCount})
|
foreach(currentConfigIndex RANGE ${configsCount})
|
||||||
LIST(GET ${_NAME}_CONSIDERED_CONFIGS ${currentConfigIndex} filename)
|
list(GET ${_NAME}_CONSIDERED_CONFIGS ${currentConfigIndex} filename)
|
||||||
LIST(GET ${_NAME}_CONSIDERED_VERSIONS ${currentConfigIndex} version)
|
list(GET ${_NAME}_CONSIDERED_VERSIONS ${currentConfigIndex} version)
|
||||||
SET(configsText "${configsText} ${filename} (version ${version})\n")
|
set(configsText "${configsText} ${filename} (version ${version})\n")
|
||||||
ENDFOREACH(currentConfigIndex)
|
endforeach()
|
||||||
|
if (${_NAME}_NOT_FOUND_MESSAGE)
|
||||||
|
set(configsText "${configsText} Reason given by package: ${${_NAME}_NOT_FOUND_MESSAGE}\n")
|
||||||
|
endif()
|
||||||
_FPHSA_FAILURE_MESSAGE("${FPHSA_FAIL_MESSAGE} ${VERSION_MSG}, checked the following files:\n${configsText}")
|
_FPHSA_FAILURE_MESSAGE("${FPHSA_FAIL_MESSAGE} ${VERSION_MSG}, checked the following files:\n${configsText}")
|
||||||
|
|
||||||
ELSE(${_NAME}_CONSIDERED_CONFIGS)
|
else()
|
||||||
# Simple case: No Config-file was found at all:
|
# Simple case: No Config-file was found at all:
|
||||||
_FPHSA_FAILURE_MESSAGE("${FPHSA_FAIL_MESSAGE}: found neither ${_NAME}Config.cmake nor ${_NAME_LOWER}-config.cmake ${VERSION_MSG}")
|
_FPHSA_FAILURE_MESSAGE("${FPHSA_FAIL_MESSAGE}: found neither ${_NAME}Config.cmake nor ${_NAME_LOWER}-config.cmake ${VERSION_MSG}")
|
||||||
ENDIF(${_NAME}_CONSIDERED_CONFIGS)
|
endif()
|
||||||
ENDIF(${_NAME}_CONFIG)
|
endif()
|
||||||
ENDMACRO(_FPHSA_HANDLE_FAILURE_CONFIG_MODE)
|
endmacro()
|
||||||
|
|
||||||
|
|
||||||
FUNCTION(FIND_PACKAGE_HANDLE_STANDARD_ARGS _NAME _FIRST_ARG)
|
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)
|
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)
|
||||||
|
|
||||||
IF(${INDEX} EQUAL -1)
|
if(${INDEX} EQUAL -1)
|
||||||
SET(FPHSA_FAIL_MESSAGE ${_FIRST_ARG})
|
set(FPHSA_FAIL_MESSAGE ${_FIRST_ARG})
|
||||||
SET(FPHSA_REQUIRED_VARS ${ARGN})
|
set(FPHSA_REQUIRED_VARS ${ARGN})
|
||||||
SET(FPHSA_VERSION_VAR)
|
set(FPHSA_VERSION_VAR)
|
||||||
ELSE(${INDEX} EQUAL -1)
|
else()
|
||||||
|
|
||||||
CMAKE_PARSE_ARGUMENTS(FPHSA "${options}" "${oneValueArgs}" "${multiValueArgs}" ${_FIRST_ARG} ${ARGN})
|
CMAKE_PARSE_ARGUMENTS(FPHSA "${options}" "${oneValueArgs}" "${multiValueArgs}" ${_FIRST_ARG} ${ARGN})
|
||||||
|
|
||||||
IF(FPHSA_UNPARSED_ARGUMENTS)
|
if(FPHSA_UNPARSED_ARGUMENTS)
|
||||||
MESSAGE(FATAL_ERROR "Unknown keywords given to FIND_PACKAGE_HANDLE_STANDARD_ARGS(): \"${FPHSA_UNPARSED_ARGUMENTS}\"")
|
message(FATAL_ERROR "Unknown keywords given to FIND_PACKAGE_HANDLE_STANDARD_ARGS(): \"${FPHSA_UNPARSED_ARGUMENTS}\"")
|
||||||
ENDIF(FPHSA_UNPARSED_ARGUMENTS)
|
endif()
|
||||||
|
|
||||||
IF(NOT FPHSA_FAIL_MESSAGE)
|
if(NOT FPHSA_FAIL_MESSAGE)
|
||||||
SET(FPHSA_FAIL_MESSAGE "DEFAULT_MSG")
|
set(FPHSA_FAIL_MESSAGE "DEFAULT_MSG")
|
||||||
ENDIF(NOT FPHSA_FAIL_MESSAGE)
|
endif()
|
||||||
ENDIF(${INDEX} EQUAL -1)
|
endif()
|
||||||
|
|
||||||
# now that we collected all arguments, process them
|
# now that we collected all arguments, process them
|
||||||
|
|
||||||
IF("${FPHSA_FAIL_MESSAGE}" STREQUAL "DEFAULT_MSG")
|
if("${FPHSA_FAIL_MESSAGE}" STREQUAL "DEFAULT_MSG")
|
||||||
SET(FPHSA_FAIL_MESSAGE "Could NOT find ${_NAME}")
|
set(FPHSA_FAIL_MESSAGE "Could NOT find ${_NAME}")
|
||||||
ENDIF("${FPHSA_FAIL_MESSAGE}" STREQUAL "DEFAULT_MSG")
|
endif()
|
||||||
|
|
||||||
# In config-mode, we rely on the variable <package>_CONFIG, which is set by find_package()
|
# In config-mode, we rely on the variable <package>_CONFIG, which is set by find_package()
|
||||||
# when it successfully found the config-file, including version checking:
|
# when it successfully found the config-file, including version checking:
|
||||||
IF(FPHSA_CONFIG_MODE)
|
if(FPHSA_CONFIG_MODE)
|
||||||
LIST(INSERT FPHSA_REQUIRED_VARS 0 ${_NAME}_CONFIG)
|
list(INSERT FPHSA_REQUIRED_VARS 0 ${_NAME}_CONFIG)
|
||||||
LIST(REMOVE_DUPLICATES FPHSA_REQUIRED_VARS)
|
list(REMOVE_DUPLICATES FPHSA_REQUIRED_VARS)
|
||||||
SET(FPHSA_VERSION_VAR ${_NAME}_VERSION)
|
set(FPHSA_VERSION_VAR ${_NAME}_VERSION)
|
||||||
ENDIF(FPHSA_CONFIG_MODE)
|
endif()
|
||||||
|
|
||||||
IF(NOT FPHSA_REQUIRED_VARS)
|
if(NOT FPHSA_REQUIRED_VARS)
|
||||||
MESSAGE(FATAL_ERROR "No REQUIRED_VARS specified for FIND_PACKAGE_HANDLE_STANDARD_ARGS()")
|
message(FATAL_ERROR "No REQUIRED_VARS specified for FIND_PACKAGE_HANDLE_STANDARD_ARGS()")
|
||||||
ENDIF(NOT FPHSA_REQUIRED_VARS)
|
endif()
|
||||||
|
|
||||||
LIST(GET FPHSA_REQUIRED_VARS 0 _FIRST_REQUIRED_VAR)
|
list(GET FPHSA_REQUIRED_VARS 0 _FIRST_REQUIRED_VAR)
|
||||||
|
|
||||||
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 "")
|
||||||
SET(${_NAME_UPPER}_FOUND TRUE)
|
|
||||||
# check if all passed variables are valid
|
# check if all passed variables are valid
|
||||||
FOREACH(_CURRENT_VAR ${FPHSA_REQUIRED_VARS})
|
unset(${_FOUND_VAR})
|
||||||
IF(NOT ${_CURRENT_VAR})
|
foreach(_CURRENT_VAR ${FPHSA_REQUIRED_VARS})
|
||||||
SET(${_NAME_UPPER}_FOUND FALSE)
|
if(NOT ${_CURRENT_VAR})
|
||||||
SET(MISSING_VARS "${MISSING_VARS} ${_CURRENT_VAR}")
|
set(${_FOUND_VAR} FALSE)
|
||||||
ELSE(NOT ${_CURRENT_VAR})
|
set(MISSING_VARS "${MISSING_VARS} ${_CURRENT_VAR}")
|
||||||
SET(DETAILS "${DETAILS}[${${_CURRENT_VAR}}]")
|
else()
|
||||||
ENDIF(NOT ${_CURRENT_VAR})
|
set(DETAILS "${DETAILS}[${${_CURRENT_VAR}}]")
|
||||||
ENDFOREACH(_CURRENT_VAR)
|
endif()
|
||||||
|
endforeach()
|
||||||
|
if(NOT "${${_FOUND_VAR}}" STREQUAL "FALSE")
|
||||||
|
set(${_FOUND_VAR} TRUE)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# component handling
|
||||||
|
unset(FOUND_COMPONENTS_MSG)
|
||||||
|
unset(MISSING_COMPONENTS_MSG)
|
||||||
|
|
||||||
|
if(FPHSA_HANDLE_COMPONENTS)
|
||||||
|
foreach(comp ${${_NAME}_FIND_COMPONENTS})
|
||||||
|
if(${_NAME}_${comp}_FOUND)
|
||||||
|
|
||||||
|
if(NOT DEFINED FOUND_COMPONENTS_MSG)
|
||||||
|
set(FOUND_COMPONENTS_MSG "found components: ")
|
||||||
|
endif()
|
||||||
|
set(FOUND_COMPONENTS_MSG "${FOUND_COMPONENTS_MSG} ${comp}")
|
||||||
|
|
||||||
|
else()
|
||||||
|
|
||||||
|
if(NOT DEFINED MISSING_COMPONENTS_MSG)
|
||||||
|
set(MISSING_COMPONENTS_MSG "missing components: ")
|
||||||
|
endif()
|
||||||
|
set(MISSING_COMPONENTS_MSG "${MISSING_COMPONENTS_MSG} ${comp}")
|
||||||
|
|
||||||
|
if(${_NAME}_FIND_REQUIRED_${comp})
|
||||||
|
set(${_FOUND_VAR} FALSE)
|
||||||
|
set(MISSING_VARS "${MISSING_VARS} ${comp}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
endif()
|
||||||
|
endforeach()
|
||||||
|
set(COMPONENT_MSG "${FOUND_COMPONENTS_MSG} ${MISSING_COMPONENTS_MSG}")
|
||||||
|
set(DETAILS "${DETAILS}[c${COMPONENT_MSG}]")
|
||||||
|
endif()
|
||||||
|
|
||||||
# version handling:
|
# version handling:
|
||||||
SET(VERSION_MSG "")
|
set(VERSION_MSG "")
|
||||||
SET(VERSION_OK TRUE)
|
set(VERSION_OK TRUE)
|
||||||
SET(VERSION ${${FPHSA_VERSION_VAR}} )
|
set(VERSION ${${FPHSA_VERSION_VAR}} )
|
||||||
IF (${_NAME}_FIND_VERSION)
|
if (${_NAME}_FIND_VERSION)
|
||||||
|
|
||||||
IF(VERSION)
|
if(VERSION)
|
||||||
|
|
||||||
IF(${_NAME}_FIND_VERSION_EXACT) # exact version required
|
if(${_NAME}_FIND_VERSION_EXACT) # exact version required
|
||||||
IF (NOT "${${_NAME}_FIND_VERSION}" VERSION_EQUAL "${VERSION}")
|
if (NOT "${${_NAME}_FIND_VERSION}" VERSION_EQUAL "${VERSION}")
|
||||||
SET(VERSION_MSG "Found unsuitable version \"${VERSION}\", but required is exact version \"${${_NAME}_FIND_VERSION}\"")
|
set(VERSION_MSG "Found unsuitable version \"${VERSION}\", but required is exact version \"${${_NAME}_FIND_VERSION}\"")
|
||||||
SET(VERSION_OK FALSE)
|
set(VERSION_OK FALSE)
|
||||||
ELSE (NOT "${${_NAME}_FIND_VERSION}" VERSION_EQUAL "${VERSION}")
|
else ()
|
||||||
SET(VERSION_MSG "(found suitable exact version \"${VERSION}\")")
|
set(VERSION_MSG "(found suitable exact version \"${VERSION}\")")
|
||||||
ENDIF (NOT "${${_NAME}_FIND_VERSION}" VERSION_EQUAL "${VERSION}")
|
endif ()
|
||||||
|
|
||||||
ELSE(${_NAME}_FIND_VERSION_EXACT) # minimum version specified:
|
else() # minimum version specified:
|
||||||
IF ("${${_NAME}_FIND_VERSION}" VERSION_GREATER "${VERSION}")
|
if ("${${_NAME}_FIND_VERSION}" VERSION_GREATER "${VERSION}")
|
||||||
SET(VERSION_MSG "Found unsuitable version \"${VERSION}\", but required is at least \"${${_NAME}_FIND_VERSION}\"")
|
set(VERSION_MSG "Found unsuitable version \"${VERSION}\", but required is at least \"${${_NAME}_FIND_VERSION}\"")
|
||||||
SET(VERSION_OK FALSE)
|
set(VERSION_OK FALSE)
|
||||||
ELSE ("${${_NAME}_FIND_VERSION}" VERSION_GREATER "${VERSION}")
|
else ()
|
||||||
SET(VERSION_MSG "(found suitable version \"${VERSION}\", required is \"${${_NAME}_FIND_VERSION}\")")
|
set(VERSION_MSG "(found suitable version \"${VERSION}\", minimum required is \"${${_NAME}_FIND_VERSION}\")")
|
||||||
ENDIF ("${${_NAME}_FIND_VERSION}" VERSION_GREATER "${VERSION}")
|
endif ()
|
||||||
ENDIF(${_NAME}_FIND_VERSION_EXACT)
|
endif()
|
||||||
|
|
||||||
ELSE(VERSION)
|
else()
|
||||||
|
|
||||||
# if the package was not found, but a version was given, add that to the output:
|
# if the package was not found, but a version was given, add that to the output:
|
||||||
IF(${_NAME}_FIND_VERSION_EXACT)
|
if(${_NAME}_FIND_VERSION_EXACT)
|
||||||
SET(VERSION_MSG "(Required is exact version \"${${_NAME}_FIND_VERSION}\")")
|
set(VERSION_MSG "(Required is exact version \"${${_NAME}_FIND_VERSION}\")")
|
||||||
ELSE(${_NAME}_FIND_VERSION_EXACT)
|
else()
|
||||||
SET(VERSION_MSG "(Required is at least version \"${${_NAME}_FIND_VERSION}\")")
|
set(VERSION_MSG "(Required is at least version \"${${_NAME}_FIND_VERSION}\")")
|
||||||
ENDIF(${_NAME}_FIND_VERSION_EXACT)
|
endif()
|
||||||
|
|
||||||
ENDIF(VERSION)
|
endif()
|
||||||
ELSE (${_NAME}_FIND_VERSION)
|
else ()
|
||||||
IF(VERSION)
|
if(VERSION)
|
||||||
SET(VERSION_MSG "(found version \"${VERSION}\")")
|
set(VERSION_MSG "(found version \"${VERSION}\")")
|
||||||
ENDIF(VERSION)
|
endif()
|
||||||
ENDIF (${_NAME}_FIND_VERSION)
|
endif ()
|
||||||
|
|
||||||
IF(VERSION_OK)
|
if(VERSION_OK)
|
||||||
SET(DETAILS "${DETAILS}[v${VERSION}(${${_NAME}_FIND_VERSION})]")
|
set(DETAILS "${DETAILS}[v${VERSION}(${${_NAME}_FIND_VERSION})]")
|
||||||
ELSE(VERSION_OK)
|
else()
|
||||||
SET(${_NAME_UPPER}_FOUND FALSE)
|
set(${_FOUND_VAR} FALSE)
|
||||||
ENDIF(VERSION_OK)
|
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}" "${DETAILS}")
|
FIND_PACKAGE_MESSAGE(${_NAME} "Found ${_NAME}: ${${_FIRST_REQUIRED_VAR}} ${VERSION_MSG} ${COMPONENT_MSG}" "${DETAILS}")
|
||||||
ELSE (${_NAME_UPPER}_FOUND)
|
else ()
|
||||||
|
|
||||||
IF(FPHSA_CONFIG_MODE)
|
if(FPHSA_CONFIG_MODE)
|
||||||
_FPHSA_HANDLE_FAILURE_CONFIG_MODE()
|
_FPHSA_HANDLE_FAILURE_CONFIG_MODE()
|
||||||
ELSE(FPHSA_CONFIG_MODE)
|
else()
|
||||||
IF(NOT VERSION_OK)
|
if(NOT VERSION_OK)
|
||||||
_FPHSA_FAILURE_MESSAGE("${FPHSA_FAIL_MESSAGE}: ${VERSION_MSG} (found ${${_FIRST_REQUIRED_VAR}})")
|
_FPHSA_FAILURE_MESSAGE("${FPHSA_FAIL_MESSAGE}: ${VERSION_MSG} (found ${${_FIRST_REQUIRED_VAR}})")
|
||||||
ELSE(NOT VERSION_OK)
|
else()
|
||||||
_FPHSA_FAILURE_MESSAGE("${FPHSA_FAIL_MESSAGE} (missing: ${MISSING_VARS}) ${VERSION_MSG}")
|
_FPHSA_FAILURE_MESSAGE("${FPHSA_FAIL_MESSAGE} (missing: ${MISSING_VARS}) ${VERSION_MSG}")
|
||||||
ENDIF(NOT VERSION_OK)
|
endif()
|
||||||
ENDIF(FPHSA_CONFIG_MODE)
|
endif()
|
||||||
|
|
||||||
ENDIF (${_NAME_UPPER}_FOUND)
|
endif ()
|
||||||
|
|
||||||
SET(${_NAME_UPPER}_FOUND ${${_NAME_UPPER}_FOUND} PARENT_SCOPE)
|
set(${_FOUND_VAR} ${${_FOUND_VAR}} PARENT_SCOPE)
|
||||||
|
|
||||||
ENDFUNCTION(FIND_PACKAGE_HANDLE_STANDARD_ARGS _FIRST_ARG)
|
endfunction()
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue