1 2 ####### Expanded from @PACKAGE_INIT@ by configure_package_config_file() ####### 3 ####### Any changes to this file will be overwritten by the next CMake run #### 4 ####### The input file was expat-config.cmake.in ######## 5 6 get_filename_component(PACKAGE_PREFIX_DIR "${CMAKE_CURRENT_LIST_DIR}/../../../" ABSOLUTE) 7 8 macro(set_and_check _var _file) 9 set(${_var} "${_file}") 10 if(NOT EXISTS "${_file}") 11 message(FATAL_ERROR "File or directory ${_file} referenced by variable ${_var} does not exist !") 12 endif() 13 endmacro() 14 15 macro(check_required_components _NAME) 16 foreach(comp ${${_NAME}_FIND_COMPONENTS}) 17 if(NOT ${_NAME}_${comp}_FOUND) 18 if(${_NAME}_FIND_REQUIRED_${comp}) 19 set(${_NAME}_FOUND FALSE) 20 endif() 21 endif() 22 endforeach() 23 endmacro() 24 25 #################################################################################### 26