- 18 Mar, 2015 1 commit
-
-
Kitware Robot authored
-
- 17 Mar, 2015 7 commits
-
-
1bda8f1f CPackWIX: Customize CMake installer theme.
-
49c8dcf7 FindMatlab: Rewrite module and provide a usage API
-
Implement a brand new FindMatlab module: - Add support for versions and components. - Find Matlab and its version in a more precise and multiplatform way. - Add API to create a new mex extension with documentation. - Add API to add matlab unit tests (with or without the unit test framework). - Find as much as possible based on a single Matlab_ROOT_DIR cache entry and allow the user to change it to re-find everything.
-
Kitware Robot authored
-
- 16 Mar, 2015 1 commit
-
-
Kitware Robot authored
-
- 15 Mar, 2015 3 commits
-
-
Domen Vrankar authored
Fixed architecture test that was missing architecture in regular expressions - bug was detected on older rpm versions where the check failed. Extended architecture test that takes into account older versions of rpm. This patch is related to 15442.
-
Domen Vrankar authored
Patch fixes bug in test reported with id 15442 - older versions of rpm print out package info a bit differently so we should ignore white spaces
-
Kitware Robot authored
-
- 14 Mar, 2015 1 commit
-
-
Kitware Robot authored
-
- 13 Mar, 2015 1 commit
-
-
Kitware Robot authored
-
- 12 Mar, 2015 12 commits
-
-
Nils Gladitz authored
-
ec428faf Genex: Extend cmGeneratorExpressionContext constructor. 082b6a9d Genex: Split cmGeneratorExpressionContext into own file. 9df1f0fc Genex: Split cmGeneratorExpressionNode into own file. 80b9f0cb Genex: Extract an evaluateWithContext method. 642048ce Help: Move docs of $<0:...> and $<1:...> to output section.
-
3ff95f3b cmAlgorithms: Add early return in cmRemoveIndices.
-
77534e84 Add options to build CMake without any language dialects
-
242c3966 add_custom_command: Diagnose MAIN_DEPENDENCY limitation.
-
c771f9d9 CTest: Fix Jacoco Coverage
-
Kitware Robot authored
-
- 11 Mar, 2015 3 commits
-
-
Brad King authored
-
Extract upstream KWSys using the following shell commands. $ git archive --prefix=upstream-kwsys/ 4a698414 | tar x $ git shortlog --no-merges --abbrev=8 --format='%h %s' 4890f30c..4a698414 Brad King (1): 4a698414 hashtable: Give prime number table functions internal linkage Change-Id: I9f06cdf8c8b5fbe7e1f07afbcc77457f5ee6445f
-
Kitware Robot authored
-
- 10 Mar, 2015 11 commits
-
-
Stephen Kelly authored
If de-duplicating a container of pointers, there is no need to store iterators to them, as that is just more 'pointer chasing'. Store the pointers themselves and use API which compares the pointers in the specialization.
-
Stephen Kelly authored
-
Stephen Kelly authored
There is no need to copy all of the values in the container in order to determine uniqueness. Iterators can be stored instead and can be used with standard algorithms with custom comparison methods. This also means that we use less space in case the value_type size is greater than sizeof(iterator). That is common for std::string which may require up to 32 bytes (libstdc++ 5.0 and MSVC at least). With libstdc++ 4.9 and older, std::string is 8 bytes, so we likely don't gain anything here. Inspired-by:
Daniel Pfeifer <daniel@pfeifer-mail.de>
-
Stephen Kelly authored
-
Stephen Kelly authored
Don't require re-building the world when changing cmAlgorithms.h.
-
Stephen Kelly authored
-
Stephen Kelly authored
Initialize the members in the appropriate place.
-
Stephen Kelly authored
-
Stephen Kelly authored
-
Stephen Kelly authored
Avoid derefencing the iterator and segfaulting if the range is empty.
-
Stephen Kelly authored
Make it easier to make modifications to the context before evaluating with it.
-