1. 01 7月, 2016 1 次提交
  2. 28 6月, 2016 1 次提交
  3. 22 6月, 2016 2 次提交
  4. 20 6月, 2016 1 次提交
    • A
      cmake: refactoring of OpenCVConfig · c6c65121
      Alexander Alekhin 提交于
      - removed OpenCV_LIB_DIR* vars (they are broken and not required anymore)
      - OpenCVConfig.cmake doesn't contain ANDROID/CUDA code if there is no such support
      - removed OpenCV2_INCLUDE_DIRS_CONFIGCMAKE, merged into OpenCV_INCLUDE_DIRS_CONFIGCMAKE
      - fix hard-coded relative paths for OpenCV_INSTALL_PATH
      - removed OpenCV_TBB_ARCH
      - switch OpenCVConfig.cmake into 2-level mode for Android SDK
      c6c65121
  5. 16 6月, 2016 1 次提交
  6. 15 6月, 2016 1 次提交
  7. 03 6月, 2016 1 次提交
  8. 26 5月, 2016 1 次提交
  9. 13 5月, 2016 1 次提交
    • M
      Disabled PCH support for gcc >= 6.0.0 · a0fdc91a
      Maksim Shabunin 提交于
      Command line generation routine uses "-isystem" to include headers outside of "<opencv>/modules" folder, but GCC 6 does not work when passed "-isystem /usr/include" option.
      a0fdc91a
  10. 18 4月, 2016 1 次提交
  11. 06 4月, 2016 1 次提交
    • Q
      fix OpenCV_CONFIG_PATH get null value after CMake 2.8.11 · a7fe73f2
      qiao 提交于
      syntax of cmake "get_filename_component" changed after version 2.8.11
      
      for cmake version < 2.8.11
        get_filename_component(<VAR> <FileName> PATH [CACHE])
      
      for cmake version >= 2.8.11
        get_filename_component(<VAR> <FileName> DIRECTORY [CACHE])
      
      Update OpenCVConfig.cmake
      
      Update OpenCVConfig.cmake.in
      a7fe73f2
  12. 19 3月, 2016 1 次提交
  13. 17 3月, 2016 1 次提交
  14. 11 3月, 2016 2 次提交
  15. 11 2月, 2016 2 次提交
  16. 06 2月, 2016 1 次提交
  17. 01 2月, 2016 2 次提交
  18. 31 1月, 2016 2 次提交
  19. 22 1月, 2016 1 次提交
  20. 21 1月, 2016 2 次提交
  21. 15 1月, 2016 3 次提交
  22. 14 1月, 2016 1 次提交
  23. 29 12月, 2015 1 次提交
  24. 23 12月, 2015 2 次提交
  25. 22 12月, 2015 3 次提交
  26. 18 12月, 2015 3 次提交
  27. 17 12月, 2015 1 次提交
    • V
      Properly check for version in find_package · 932043fd
      Vincent Rabaud 提交于
      If I ask for version 2, the current trunk version (version 3), will say it is compatible, which is erroneous.
      
      Do not consider different major versions compatible in cmake config file
      932043fd