@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)