2019-06-05 12:28:31 +00:00
|
|
|
# We can't create the same interface imported target multiple times, CMake will complain if we do
|
|
|
|
# that. This can happen if the find_package call is done in multiple different subdirectories.
|
|
|
|
if(TARGET WrapDoubleConversion::WrapDoubleConversion)
|
|
|
|
set(WrapDoubleConversion_FOUND ON)
|
|
|
|
return()
|
|
|
|
endif()
|
|
|
|
|
2020-06-04 09:53:38 +00:00
|
|
|
set(WrapDoubleConversion_FOUND OFF)
|
|
|
|
|
2020-06-26 16:15:48 +00:00
|
|
|
find_package(double-conversion QUIET)
|
2019-01-07 14:22:24 +00:00
|
|
|
if (double-conversion_FOUND)
|
Write find_dependency() calls in Qt Module config files
This change introduces a new function called qt_find_package()
which can take an extra option called PROVIDED_TARGETS, which
associates targets with the package that defines those targets.
This is done by setting the INTERFACE_QT_PACKAGE_NAME and
INTERFACE_QT_PACKAGE_VERSION properties on the imported targets.
This information allows us to generate appropriate find_dependency()
calls in a module's Config file for third party libraries.
For example when an application links against QtCore, it should also
link against zlib and atomic libraries. In order to do that, the
library locations first have to be found by CMake. This is achieved by
embedding find_dependency(ZLIB) and find_dependency(Atomic) in
Qt5CoreDependencies.cmake which is included by Qt5CoreConfig.cmake.
The latter is picked up when an application project contains
find_package(Qt5Core), and thus all linking dependencies are resolved.
The information 'which package provides which targets' is contained
in the python json2cmake conversion script. The generated output of
the script contains qt_find_package() calls that represent that
information.
The Qt5CoreDependencies.cmake file and which which dependencies it
contains is generated at the QtPostProcess stop.
Note that for non-static Qt builds, we only need to propagate public
3rd party libraries. For static builds, we need all third party
libraries.
In order for the INTERFACE_QT_PACKAGE_NAME property to be read in any
scope, the targets on which the property is set, have to be GLOBAL.
Also for applications and other modules to find all required third
party libraries, we have to install all our custom Find modules, and
make sure they define INTERFACE IMPORTED libraries, and not just
IMPORTED libraries.
Change-Id: I694d6e32d05b96d5e241df0156fc79d0029426aa
Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
2019-04-24 15:14:25 +00:00
|
|
|
include(FeatureSummary)
|
2019-01-07 14:22:24 +00:00
|
|
|
set_package_properties(double-conversion PROPERTIES TYPE REQUIRED)
|
2020-02-21 14:52:58 +00:00
|
|
|
add_library(WrapDoubleConversion::WrapDoubleConversion INTERFACE IMPORTED)
|
2019-05-21 15:09:47 +00:00
|
|
|
target_link_libraries(WrapDoubleConversion::WrapDoubleConversion
|
|
|
|
INTERFACE double-conversion::double-conversion)
|
2020-06-04 09:53:38 +00:00
|
|
|
set(WrapDoubleConversion_FOUND ON)
|
2019-01-07 14:22:24 +00:00
|
|
|
return()
|
|
|
|
endif()
|
2020-06-26 16:32:53 +00:00
|
|
|
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
|
|
find_package_handle_standard_args(WrapDoubleConversion DEFAULT_MSG WrapDoubleConversion_FOUND)
|