summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/find_package/RequiredVarNestedConfig.cmake
blob: c3c9973b6b74205e1a5044fe0d4d087b2037dbba (plain)
1
2
3
4
5
6
7
8
if (CMAKE_FIND_REQUIRED)
  message(FATAL_ERROR "CMAKE_FIND_REQUIRED enabled in Config.cmake")
endif()
find_package(DoesNotExist)
find_library(library DoesNotExist)
find_program(program DoesNotExist)
find_path(path DoesNotExist)
find_file(file DoesNotExist)