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 .. 即可成功。

  • 相关阅读:
    【bzoj1174】[Balkan2007]Toponyms Trie树
    【bzoj1786】[Ahoi2008]Pair 配对 dp
    【bzoj3956】Count 单调栈+可持久化线段树
    【bzoj4605】崂山白花蛇草水 权值线段树套KD-tree
    【bzoj3696】化合物 树形dp
    【bzoj1150】[CTSC2007]数据备份Backup 模拟费用流+链表+堆
    【bzoj3671】[Noi2014]随机数生成器 贪心
    【bzoj4653】[Noi2016]区间 双指针法+线段树
    【bzoj4197】[Noi2015]寿司晚宴 分解质因数+状态压缩dp
    用Python操作Named pipe命名管道,实用做法——os.read 或 os.write
  • 原文地址:https://www.cnblogs.com/shirley-bhu/p/10442941.html
Copyright © 2011-2022 走看看