14 lines
418 B
CMake
14 lines
418 B
CMake
|
@PACKAGE_INIT@
|
||
|
|
||
|
# Include the exported CMake file
|
||
|
get_filename_component(picasso_CMAKE_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH)
|
||
|
|
||
|
# This macro enables usage of find_dependency().
|
||
|
# https://cmake.org/cmake/help/v3.11/module/CMakeFindDependencyMacro.html
|
||
|
include(CMakeFindDependencyMacro)
|
||
|
|
||
|
if(NOT TARGET picasso::picasso)
|
||
|
include("${picasso_CMAKE_DIR}/picasso-targets.cmake")
|
||
|
endif()
|
||
|
|
||
|
check_required_components(picasso)
|