cigui/cmake/CIGUIConfig.cmake.in
2025-04-13 17:54:14 +02:00

16 lines
No EOL
422 B
CMake

@PACKAGE_INIT@
# Import targets created by CIGUITargets.cmake
include("${CMAKE_CURRENT_LIST_DIR}/CIGUITargets.cmake")
# Ensure LLGL is available
include(CMakeFindDependencyMacro)
find_dependency(LLGL REQUIRED)
# Define convenient imported target if it doesn't exist
if(NOT TARGET cigui::cigui)
add_library(cigui::cigui ALIAS cigui)
endif()
# Check all required components are found
check_required_components(cigui)