diff --git a/CMakeLists.txt b/CMakeLists.txt index a943b1e..a685689 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -116,6 +116,17 @@ endif(APPLE) find_package(Doxygen) find_package(Boost REQUIRED unit_test_framework) +######################################################################## +# Find OOT test dependencies +######################################################################## +execute_process( + COMMAND "${PYTHON_EXECUTABLE}" -c "import scipy" + RESULT_VARIABLE ret + OUTPUT_QUIET) +if(ret EQUAL "1") + message(FATAL_ERROR "Failed to find Python QA dependencies") +endif() + ######################################################################## # PyBind11 Related ########################################################################