- 05 Sep, 2017 1 commit
-
-
Gennadiy Civil authored
CMake: use threads if allowed and found, not just if found.
-
- 01 Sep, 2017 7 commits
-
-
Gennadiy Civil authored
Fix WhenSorted() documentation example
-
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.
-
Gennadiy Civil authored
Performance fixes reported by cppcheck
-
Gennadiy Civil authored
Wrong version reported (1.7.0 should be 1.8.0)
-
Gennadiy Civil authored
use cmake build type defined in .travis.yml for travis builds
-
Gennadiy Civil authored
AppVeyor MinGW-w64 test build
-
Arkady Shapkin authored
-
- 31 Aug, 2017 12 commits
-
-
Gennadiy Civil authored
change links from former code.google.com to current github repository
-
Arkady Shapkin authored
-
Herbert Thielen authored
-
Herbert Thielen authored
-
Gennadiy Civil authored
fix example's comment
-
Gennadiy Civil authored
-
Herbert Thielen authored
-
Herbert Thielen authored
-
Gennadiy Civil authored
Moved the ignoring of *.pyc files to top level
-
Claus Stovgaard authored
# Conflicts: # .gitignore
-
Herbert Thielen authored
-
Gennadiy Civil authored
remove non-existing gmock_build_samples switch
-
- 30 Aug, 2017 19 commits
-
-
Arkadiy Shapkin authored
-
Gennadiy Civil authored
Detect Fuchsia, and set GTEST_HAS_PTHREAD on GTEST_OS_FUCHSIA, plus small documentation change
-
Herbert Thielen authored
-
Gennadiy Civil authored
Who knows? may not be very trivial given the code drift between internal and OSS
-
Gennadiy Civil authored
-
Scott Graham authored
-
Gennadiy Civil authored
-
Herbert Thielen authored
-
Gennadiy Civil authored
-
Herbert Thielen authored
This reverts commit 73d58dd4. Unfortunately, ${CMAKE_CFG_INTDIR} is set during build only and doesn't help here.
-
Gennadiy Civil authored
fix SetUp/TearDownTestCase() in AdvancedGuide
-
Herbert Thielen authored
On single-configuration build systems as Makefile Generators, there is no subdirectory for the configuration in the build tree - therefore ask cmake for the subdir by using CMAKE_CFG_INTDIR, which is just '.' on single-configuration build systems (Linux et al.).
-
Herbert Thielen authored
-
Herbert Thielen authored
fixes issue #1087
-
Herbert Thielen authored
While cmake does not complain on build type 'debug', the cmake documentation always spells it 'Debug', so take this.
-
Herbert Thielen authored
The BUILD_TYPE variable of .travis.yml was ignored up to now.
-
Herbert Thielen authored
-
Gennadiy Civil authored
fix typo in comment and string (SetUpTestCase)
-
Gennadiy Civil authored
-
- 29 Aug, 2017 1 commit
-
-
Gennadiy Civil authored
fix typos mentioned in issue 1105
-