summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/CMP0106/CMP0106-Common.cmake
blob: a1f7908f39859d998c297535e3610363601820ad (plain)
1
2
3
4
5
6
7
8
9
10
include(Documentation OPTIONAL RESULT_VARIABLE found)
if (NOT should_find AND found)
  message(FATAL_ERROR
    "The Documentation module should not have been found, but it was.")
endif ()
if (should_find AND NOT found)
  message(FATAL_ERROR
    "The Documentation module should have been found, but it was not.")
endif ()
include(${CMAKE_ROOT}/Modules/Documentation.cmake)