1. 14 Sep, 2017 1 commit
  2. 13 Sep, 2017 3 commits
  3. 12 Sep, 2017 2 commits
  4. 11 Sep, 2017 3 commits
  5. 09 Sep, 2017 1 commit
  6. 08 Sep, 2017 6 commits
  7. 07 Sep, 2017 4 commits
  8. 06 Sep, 2017 2 commits
  9. 05 Sep, 2017 8 commits
  10. 04 Sep, 2017 6 commits
  11. 01 Sep, 2017 4 commits
    • Herbert Thielen's avatar
      520ad96b
    • Herbert Thielen's avatar
      switch one build to Release mode · d15b8b45
      Herbert Thielen authored
      This turns on optimization which allows the compiler to discover more
      problems and omit some more warnings.
      d15b8b45
    • Gennadiy Civil's avatar
      Merge pull request #900 from Gallaecio/patch-1 · 7c6353d2
      Gennadiy Civil authored
      Fix WhenSorted() documentation example
      7c6353d2
    • 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