1@PACKAGE_INIT@ 2 3get_filename_component(_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH) 4file(GLOB CONFIG_FILES "${_DIR}/cpuinfo-config-*.cmake") 5foreach(f ${CONFIG_FILES}) 6 include(${f}) 7endforeach() 8 9# ${_DIR}/cpuinfo-targets-*.cmake will be included here 10include("${_DIR}/cpuinfo-targets.cmake") 11 12check_required_components(@PROJECT_NAME@) 13