check_packages.cmake 919 字节
Newer Older
Z
zhangjinchao01 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
# Check package for each cmake option

if(WITH_GPU)
  find_package(CUDA REQUIRED)  # CUDA is required when use gpu
endif()

if(WITH_PYTHON)
  find_package(PythonLibs 2.6 REQUIRED)
  find_package(PythonInterp REQUIRED)
  find_package(NumPy REQUIRED)
endif()

if(WITH_STYLE_CHECK)
  find_package(PythonInterp REQUIRED)
endif()

if(WITH_GLOG)
  find_package(Glog REQUIRED)
endif()

if(WITH_GFLAGS)
  find_package(Gflags REQUIRED)
endif()

if(WITH_TESTING)
  find_package(GTest REQUIRED)
endif()

if(WITH_DOC)
  find_package(Sphinx REQUIRED)
  find_package(Doxygen REQUIRED)
  find_python_module(recommonmark REQUIRED)
endif()

if(WITH_SWIG_PY)
  if(NOT SWIG_FOUND)
    message(FATAL_ERROR "SWIG is not found. Please install swig or disable WITH_SWIG_PY")
  endif()
  find_python_module(wheel REQUIRED)  # package wheel
endif()

if(NOT M4_EXECUTABLE)
  message(FATAL_ERROR "Paddle need m4 to generate proto file.")
endif()