提交 5f4ac506 编写于 作者: R Reinhold Gschweicher

don't search for dependencies if already disabled

上级 06a49513
......@@ -68,10 +68,12 @@ endif()
# find python
if (BUILD_PYTHON_BINDINGS)
find_package(PythonInterp)
if (NOT PYTHON_EXECUTABLE)
set(BUILD_PYTHON_BINDINGS OFF)
endif()
endif()
find_hdf5()
if (NOT HDF5_FOUND)
......@@ -112,10 +114,12 @@ if (USE_MPI AND HDF5_IS_PARALLEL)
endif()
find_package(GTest)
if (BUILD_TESTS)
find_package(GTest)
if (NOT GTEST_FOUND)
message(WARNING "gtest library not found, some tests will not be run")
endif()
endif()
if (USE_OPENMP)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册