https://github.com/Kitware/CMake
Raw File
Tip revision: 9a64e11474dfcf58c388e270731f19f3414c46fa authored by Bill Hoffman on 18 April 2006, 20:40:40 UTC
ENH: make cpack names match old cmake release process
Tip revision: 9a64e11
CTestCustom.ctest.in
SET(CTEST_CUSTOM_WARNING_EXCEPTION
  ${CTEST_CUSTOM_WARNING_EXCEPTION}
  "xtree.[0-9]+. : warning C4702: unreachable code"
  "warning LNK4221"
  "variable .var_args[2]*. is used before its value is set"
  "jobserver unavailable"
  "warning: \\(Long double usage is reported only once for each file"
  "warning: To disable this warning use"
  "could not be inlined"
  "libcmcurl.*has no symbols"
  "not sorted slower link editing will result"
  "stl_deque.h:479"
  "Utilities/cmzlib/"
  "Utilities/cmxmlrpc/"
  "Source/CTest/Curl"
  "Utilities/cmcurl"
  "Source/CursesDialog/form"
  "Redeclaration of .send..... with a different storage class specifier"
  "Utilities/cmexpat/"
  "is not used for resolving any symbol"
  "remark\\(1209"
  "stl_deque.h:1051"
  )


IF(NOT "@CMAKE_GENERATOR@" MATCHES "Xcode")
  SET(CTEST_CUSTOM_COVERAGE_EXCLUDE
    ${CTEST_CUSTOM_COVERAGE_EXCLUDE}
    "XCode"
    )
ENDIF (NOT "@CMAKE_GENERATOR@" MATCHES "Xcode")

IF(NOT "@CMAKE_GENERATOR@" MATCHES "KDevelop")
  SET(CTEST_CUSTOM_COVERAGE_EXCLUDE
    ${CTEST_CUSTOM_COVERAGE_EXCLUDE}
    "Kdevelop"
    )
ENDIF (NOT "@CMAKE_GENERATOR@" MATCHES "KDevelop")

back to top