2019-05-03 14:03:15 +00:00
|
|
|
@PACKAGE_INIT@
|
|
|
|
|
|
|
|
include(CMakeFindDependencyMacro)
|
|
|
|
|
|
|
|
get_filename_component(_import_prefix "${CMAKE_CURRENT_LIST_FILE}" PATH)
|
|
|
|
get_filename_component(_import_prefix "${_import_prefix}" REALPATH)
|
|
|
|
|
2019-06-04 15:08:47 +00:00
|
|
|
if (NOT QT_NO_CREATE_TARGETS)
|
|
|
|
# Find required dependencies, if any.
|
|
|
|
if(EXISTS "${CMAKE_CURRENT_LIST_DIR}/@target@Dependencies.cmake")
|
|
|
|
include("${CMAKE_CURRENT_LIST_DIR}/@target@Dependencies.cmake")
|
|
|
|
endif()
|
2019-05-03 14:03:15 +00:00
|
|
|
|
2019-06-04 15:08:47 +00:00
|
|
|
include("${CMAKE_CURRENT_LIST_DIR}/@target@Targets.cmake")
|
|
|
|
endif()
|