Build: remove cmake messages about disabled tests when feature is disabled

No need to report this, it just adds noise to the cmake config. The messages
that we need to keep are the ones about disabling tests when the test file or
idiff are missing.
This commit is contained in:
Brecht Van Lommel 2021-10-19 09:39:40 +02:00
parent 641a5be50e
commit f6af3d9197
1 changed files with 0 additions and 6 deletions

View File

@ -753,20 +753,14 @@ set(geo_node_tests
if(WITH_GMP)
list(APPEND geo_node_tests mesh/boolean)
else()
MESSAGE(STATUS "Disabling mesh/boolean tests because WITH_GMP is off.")
endif()
if(WITH_OPENVDB)
list(APPEND geo_node_tests volume)
else()
MESSAGE(STATUS "Disabling volume tests because WITH_OPENVDB is off.")
endif()
if(WITH_OPENSUBDIV)
list(APPEND geo_node_tests mesh/subdivision_tests)
else()
MESSAGE(STATUS "Disabling mesh/subdivision_tests because WITH_OPENSUBDIV is off.")
endif()
foreach(geo_node_test ${geo_node_tests})