zoukankan      html  css  js  c++  java
  • MAC: CMake compile CloudCompare error:By not providing "FindQt5PrintSupport.cmake" in CMAKE_MODULE_PATH

    ERROR message as:

    CMake Warning at CC/CMakeLists.txt:26 (message):
      CCLib configured without parallel algorithm capabilities - see
      COMPILE_CC_CORE_LIB_WITH_TBB
    
    
    CMake Error at cmake/CMakeExternalLibs.cmake:18 (find_package):
      By not providing "FindQt5PrintSupport.cmake" in CMAKE_MODULE_PATH this
      project has asked CMake to find a package configuration file provided by
      "Qt5PrintSupport", but CMake did not find one.
    
      Could not find a package configuration file provided by "Qt5PrintSupport"
      with any of the following names:
    
        Qt5PrintSupportConfig.cmake
        qt5printsupport-config.cmake
    
      Add the installation prefix of "Qt5PrintSupport" to CMAKE_PREFIX_PATH or
      set "Qt5PrintSupport_DIR" to a directory containing one of the above files.
      If "Qt5PrintSupport" provides a separate development package or SDK, be
      sure it has been installed.
    Call Stack (most recent call first):
      CC/CMakeLists.txt:32 (include)
    
    
    -- Configuring incomplete, errors occurred!
    See also "/Users/mac/liuxueli/CloudCompare-master/build/CMakeFiles/CMakeOutput.log".
    ShirleydeMacBook-Pro:build mac$ vim ../cmake/CMakeExternalLibs.cmake 
    ShirleydeMacBook-Pro:build mac$ cmake ..
    cmake policies active:
    cmake policies active:
    CMake Warning at CC/CMakeLists.txt:26 (message):
      CCLib configured without parallel algorithm capabilities - see
      COMPILE_CC_CORE_LIB_WITH_TBB
    
    
    CMake Error at cmake/CMakeExternalLibs.cmake:19 (find_package):
      By not providing "FindQt5Concurrent.cmake" in CMAKE_MODULE_PATH this
      project has asked CMake to find a package configuration file provided by
      "Qt5Concurrent", but CMake did not find one.
    
      Could not find a package configuration file provided by "Qt5Concurrent"
      with any of the following names:
    
        Qt5ConcurrentConfig.cmake
        qt5concurrent-config.cmake
    
      Add the installation prefix of "Qt5Concurrent" to CMAKE_PREFIX_PATH or set
      "Qt5Concurrent_DIR" to a directory containing one of the above files.  If
      "Qt5Concurrent" provides a separate development package or SDK, be sure it
      has been installed.
    Call Stack (most recent call first):
      CC/CMakeLists.txt:32 (include)
    
    
    -- Configuring incomplete, errors occurred!
    See also "/Users/mac/liuxueli/CloudCompare-

    解决方案:

    修改cmake/CMakeExternalLibs.cmake文件,添加一行内容:

    set (CMAKE_PREFIX_PATH "/usr/local/Cellar/qt/5.10.1/lib/cmake")

    /usr/local/Cellar/qt/5.10.1/lib/cmake 为对应的QT安装路径

    修改后重新cmake .. 即可成功。

  • 相关阅读:
    React16+Redux 实战企业级大众点评Web App
    一类图上二选一构造问题
    O(1)判断两点之间是否有边
    ARC112F Die Siedler
    【学习笔记】同余最短路
    CF1034D Intervals of Intervals
    CF1034C Region Separation
    CF650E Clockwork Bomb
    莫队题三道(LOJ6273, CF1476G, CF700D)
    CF1290D Coffee Varieties (hard version)
  • 原文地址:https://www.cnblogs.com/shirley-bhu/p/10442941.html
Copyright © 2011-2022 走看看