CheckNoPrefixSubDirScript.cmake 260 B

12345678
  1. # Check that the prefix sub-directory is not repeated.
  2. if(EXISTS "${CUR_BIN_DIR}/${NINJA_OUTPUT_PATH_PREFIX}")
  3. message(FATAL_ERROR
  4. "no sub directory named after the CMAKE_NINJA_OUTPUT_PATH_PREFIX "
  5. "should be in the binary directory."
  6. )
  7. endif()