remove pointless check

This commit is contained in:
Martin Hořeňovský
2019-07-19 20:45:40 +02:00
parent 61a315b622
commit e96dc2d22d

View File

@@ -43,9 +43,9 @@ endif()
if (BUILD_TESTING AND CATCH_BUILD_TESTING AND NOT_SUBPROJECT) if (BUILD_TESTING AND CATCH_BUILD_TESTING AND NOT_SUBPROJECT)
find_package(Python3 COMPONENTS Interpreter) find_package(Python3 COMPONENTS Interpreter)
if (NOT PYTHONINTERP_FOUND) # if (NOT PYTHONINTERP_FOUND)
message(FATAL_ERROR "Python not found, but required for tests") # message(FATAL_ERROR "Python not found, but required for tests")
endif() # endif()
add_subdirectory(projects) add_subdirectory(projects)
endif() endif()