Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

PreventInBuildInstalls.cmake 297B

10 meses atrás
123456789
  1. string(TOLOWER "${CMAKE_INSTALL_PREFIX}" _PREFIX)
  2. string(TOLOWER "${ITK_BINARY_DIR}" _BUILD)
  3. if("${_PREFIX}" STREQUAL "${_BUILD}")
  4. message(FATAL_ERROR
  5. "The current CMAKE_INSTALL_PREFIX points at the build tree:\n"
  6. " ${CMAKE_INSTALL_PREFIX}\n"
  7. "This is not supported."
  8. )
  9. endif()