From e96dc2d22dfa0ef932009a56c3619f692242447b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Ho=C5=99e=C5=88ovsk=C3=BD?= Date: Fri, 19 Jul 2019 20:45:40 +0200 Subject: [PATCH] remove pointless check --- CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7afcd137..085ba0ca 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -43,9 +43,9 @@ endif() if (BUILD_TESTING AND CATCH_BUILD_TESTING AND NOT_SUBPROJECT) find_package(Python3 COMPONENTS Interpreter) - if (NOT PYTHONINTERP_FOUND) - message(FATAL_ERROR "Python not found, but required for tests") - endif() +# if (NOT PYTHONINTERP_FOUND) +# message(FATAL_ERROR "Python not found, but required for tests") +# endif() add_subdirectory(projects) endif()