Remove warnings related to 3rd party lib
This commit is contained in:
parent
b7b72bbf97
commit
d27bc19d71
|
@ -1,12 +1,3 @@
|
||||||
#
|
|
||||||
# Note that the ITK/CMakeLists.txt file configures this file
|
|
||||||
#
|
|
||||||
# CMake/CTestCustom.cmake.in
|
|
||||||
#
|
|
||||||
# to this file
|
|
||||||
#
|
|
||||||
# ${ITK_BINARY_DIR}/CTestCustom.cmake
|
|
||||||
#
|
|
||||||
#----------------------------------------------------------------------
|
#----------------------------------------------------------------------
|
||||||
#
|
#
|
||||||
# For further details regarding this file,
|
# For further details regarding this file,
|
||||||
|
@ -18,8 +9,8 @@
|
||||||
#----------------------------------------------------------------------
|
#----------------------------------------------------------------------
|
||||||
|
|
||||||
SET(CTEST_CUSTOM_MAXIMUM_PASSED_TEST_OUTPUT_SIZE 1000000)
|
SET(CTEST_CUSTOM_MAXIMUM_PASSED_TEST_OUTPUT_SIZE 1000000)
|
||||||
SET (CTEST_CUSTOM_MAXIMUM_NUMBER_OF_ERRORS 50)
|
SET(CTEST_CUSTOM_MAXIMUM_NUMBER_OF_ERRORS 50)
|
||||||
SET (CTEST_CUSTOM_MAXIMUM_NUMBER_OF_WARNINGS 2000)
|
SET(CTEST_CUSTOM_MAXIMUM_NUMBER_OF_WARNINGS 2000)
|
||||||
|
|
||||||
SET(CTEST_CUSTOM_COVERAGE_EXCLUDE
|
SET(CTEST_CUSTOM_COVERAGE_EXCLUDE
|
||||||
${CTEST_CUSTOM_COVERAGE_EXCLUDE}
|
${CTEST_CUSTOM_COVERAGE_EXCLUDE}
|
||||||
|
@ -36,4 +27,6 @@ SET(CTEST_CUSTOM_WARNING_EXCEPTION
|
||||||
|
|
||||||
# Suppress warning caused by intentional messages about deprecation
|
# Suppress warning caused by intentional messages about deprecation
|
||||||
".*warning,.* is deprecated"
|
".*warning,.* is deprecated"
|
||||||
)
|
# supress warnings caused by 3rd party libs:
|
||||||
|
".*/thirdparty/.*"
|
||||||
|
)
|
||||||
|
|
Loading…
Reference in New Issue