@PACKAGE_INIT@

set(_puff_supported_components "shared" "static")

if(puff_FIND_COMPONENTS)
    foreach(_comp ${puff_FIND_COMPONENTS})
        if(NOT _comp IN_LIST _puff_supported_components)
            set(puff_FOUND False)
            set(puff_NOT_FOUND_MESSAGE "Unsupported component: ${_comp}")
        endif(NOT _comp IN_LIST _puff_supported_components)

        include("${CMAKE_CURRENT_LIST_DIR}/puff-${_comp}.cmake")
    endforeach(_comp ${puff_FIND_COMPONENTS})
else(puff_FIND_COMPONENTS)
    foreach(_component_config IN LISTS _puff_supported_components)
        include("${CMAKE_CURRENT_LIST_DIR}/puff-${_component_config}.cmake")
    endforeach(_component_config IN LISTS _puff_supported_components)
endif(puff_FIND_COMPONENTS)
