summaryrefslogtreecommitdiff
path: root/Tests/RunCMake/Ninja/CheckNoPrefixSubDirScript.cmake
blob: 5a03fcb7e6ed0eac026380c4dd04232078f758af (plain)
1
2
3
4
5
6
7
8
# Check that the prefix sub-directory is not repeated.

if(EXISTS "${CUR_BIN_DIR}/${NINJA_OUTPUT_PATH_PREFIX}")
  message(FATAL_ERROR
    "no sub directory named after the CMAKE_NINJA_OUTPUT_PATH_PREFIX "
    "should be in the binary directory."
    )
endif()