1. 03 Jan, 2018 2 commits
  2. 12 Dec, 2017 1 commit
  3. 11 Dec, 2017 2 commits
  4. 08 Dec, 2017 1 commit
  5. 07 Dec, 2017 1 commit
  6. 03 Dec, 2017 1 commit
    • Carlos O'Ryan's avatar
      Run autoconf from top-level directory. · aea8580e
      Carlos O'Ryan authored
      This is part (hopefully all) of the fixes for #776.  The top-level
      configure.ac configures googletest first and then googlemock.
      With this changes it is possible to embed googletest into another
      project that uses autoconf.  For an example (though it is WIP), see
      the commits (and soon PR) referenced from google/protobuf#236.
      aea8580e
  7. 27 Nov, 2017 1 commit
  8. 27 Oct, 2017 1 commit
  9. 25 Oct, 2017 3 commits
  10. 14 Oct, 2017 1 commit
  11. 27 Sep, 2017 1 commit
  12. 09 Sep, 2017 1 commit
  13. 01 Sep, 2017 1 commit
    • Roman Lebedev's avatar
      CMake: use threads if allowed and found, not just if found. · 1a62d1b0
      Roman Lebedev authored
      If the user's cmakelists.txt first look for threads using
      find_package(Threads), then set(gtest_disable_pthreads ON),
      and then include googletest. GoogleTest will not look for
      threads. But since they have already been found before in
      user's cmakelists, it will use them regardless.
      
      This helped me fix build issue in darktable-org/rawspeed
      on windows/MSYS2, even though there are threads, and they
      are usable, googletest build was failing with issues
      about AutoHandle. I was first looking for threads, and only
      then including googletest, so no matter the value of
      gtest_disable_pthreads, it failed.
      
      The other obvious solution is for user to first include
      googletest, and only then look for threads by himself.
      1a62d1b0
  14. 31 Aug, 2017 1 commit
  15. 29 Aug, 2017 2 commits
  16. 28 Aug, 2017 1 commit
  17. 24 Aug, 2017 1 commit
  18. 22 Aug, 2017 2 commits
  19. 21 Aug, 2017 1 commit
  20. 20 Aug, 2017 2 commits
  21. 18 Aug, 2017 4 commits
  22. 16 Aug, 2017 2 commits
  23. 14 Aug, 2017 1 commit
  24. 10 Aug, 2017 5 commits
  25. 09 Aug, 2017 1 commit
    • Matthew Woehlke's avatar
      Fix library install destinations · 0e8e0e07
      Matthew Woehlke authored
      
      
      Modify library install destinations to install .dll's to the correct
      location (`bin`, not `lib`), and to install other artifacts to the
      correct platform-dependent location by using GNUInstallDirs. This is
      required for some distributions (e.g. Fedora) and will fix an issue that
      otherwise requires those distributions to patch the upstream sources.
      Also, add options to suppress installation, which may be useful for
      projects that embed Google Test.
      
      Since Google Test is trying to support archaic versions of CMake, a
      brain-dead fallback (which requires that the user set either LIB_SUFFIX
      or CMAKE_INSTALL_LIBDIR themselves) is included for versions that
      predate GNUInstallDirs.
      
      Fixes #1161.
      Co-Authored-By: default avatard3x0r <d3x0r@users.noreply.github.com>
      0e8e0e07