Commit message (Expand) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | | | | | | WCDH: Generate per-language files in multi-file mode. | Stephen Kelly | 2015-01-17 | 1 | -12/+16 | |
| * | | | | | | WCDH: Allow compilers to specify features for one language but not the other. | Stephen Kelly | 2015-01-17 | 1 | -2/+8 | |
| * | | | | | | WCDH: Find a language-specific DetermineCompiler.cmake if present. | Stephen Kelly | 2015-01-17 | 1 | -1/+5 | |
* | | | | | | | Merge topic 'test-ctest_submit-fail-with-RunCMake' | Brad King | 2015-01-19 | 13 | -0/+81 | |
|\ \ \ \ \ \ \ | | |_|_|_|_|/ | |/| | | | | | ||||||
| * | | | | | | Tests: Add RunCMake.CTestSubmit cases covering ctest_submit failures | Brad King | 2015-01-19 | 13 | -0/+81 | |
* | | | | | | | Merge branch 'release' | Brad King | 2015-01-19 | 0 | -0/+0 | |
|\ \ \ \ \ \ \ | | |_|_|_|_|/ | |/| | | | | | ||||||
| * | | | | | | Merge branch 'emacs-mode-fix-word-at-point' into release | Brad King | 2015-01-19 | 1 | -3/+7 | |
| |\ \ \ \ \ \ | | | |_|_|_|/ | | |/| | | | | ||||||
| * | | | | | | Merge branch 'FindQt-fixes' into release | Brad King | 2015-01-16 | 1 | -3/+10 | |
| |\ \ \ \ \ \ | ||||||
| * \ \ \ \ \ \ | Merge branch 'fix-cmake-org-links' into release | Brad King | 2015-01-16 | 3 | -4/+4 | |
| |\ \ \ \ \ \ \ | ||||||
| * \ \ \ \ \ \ \ | Merge branch 'release-3.0' into release | Brad King | 2015-01-16 | 1 | -0/+1 | |
| |\ \ \ \ \ \ \ \ | ||||||
| | * \ \ \ \ \ \ \ | Merge branch 'eclipse-fix-cxx-natures' into release-3.0 | Brad King | 2015-01-16 | 1 | -0/+1 | |
| | |\ \ \ \ \ \ \ \ | ||||||
| * | \ \ \ \ \ \ \ \ | Merge branch 'fix-qcc-compiler-id' into release | Brad King | 2015-01-15 | 3 | -3/+3 | |
| |\ \ \ \ \ \ \ \ \ \ | ||||||
| * \ \ \ \ \ \ \ \ \ \ | Merge branch 'fix-COMPILE_FEATURES-genex' into release | Brad King | 2015-01-15 | 3 | -9/+17 | |
| |\ \ \ \ \ \ \ \ \ \ \ | ||||||
* | \ \ \ \ \ \ \ \ \ \ \ | Merge topic 'consistent-empty-method' | Brad King | 2015-01-19 | 81 | -310/+310 | |
|\ \ \ \ \ \ \ \ \ \ \ \ \ | ||||||
| * | | | | | | | | | | | | | Replace foo.length() pattern with !foo.empty(). | Stephen Kelly | 2015-01-18 | 5 | -8/+8 | |
| * | | | | | | | | | | | | | Replace 'foo.length() >= 1' pattern with !foo.empty() | Stephen Kelly | 2015-01-18 | 2 | -2/+2 | |
| * | | | | | | | | | | | | | Replace 'foo.length() > 0' pattern with !foo.empty(). | Stephen Kelly | 2015-01-18 | 5 | -8/+8 | |
| * | | | | | | | | | | | | | Replace 'foo.length() == 0' pattern with foo.empty(). | Stephen Kelly | 2015-01-18 | 1 | -1/+1 | |
| * | | | | | | | | | | | | | Replace foo.size() pattern with !foo.empty(). | Stephen Kelly | 2015-01-18 | 42 | -114/+114 | |
| * | | | | | | | | | | | | | Replace !foo.size() pattern with foo.empty(). | Stephen Kelly | 2015-01-18 | 7 | -13/+13 | |
| * | | | | | | | | | | | | | cmListCommand: Use empty() and expand whitespace. | Stephen Kelly | 2015-01-18 | 1 | -1/+1 | |
| * | | | | | | | | | | | | | Replace 'foo.size() != 0' pattern with !foo.empty(). | Stephen Kelly | 2015-01-18 | 6 | -8/+8 | |
| * | | | | | | | | | | | | | Replace 'foo.size() == 0' pattern with foo.empty(). | Stephen Kelly | 2015-01-18 | 35 | -72/+72 | |
| * | | | | | | | | | | | | | Replace 'foo.size() > 0' pattern with !foo.empty(). | Stephen Kelly | 2015-01-18 | 32 | -83/+83 | |
* | | | | | | | | | | | | | | Merge topic 'use-member-insert' | Brad King | 2015-01-19 | 6 | -36/+13 | |
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | ||||||
| * | | | | | | | | | | | | | | cmakemain: Initialize vector content with iterators directly. | Stephen Kelly | 2015-01-18 | 1 | -5/+1 | |
| * | | | | | | | | | | | | | | cmakemain: Use member insert in command line handling code. | Stephen Kelly | 2015-01-18 | 1 | -4/+2 | |
| * | | | | | | | | | | | | | | cmListCommand: Replace loop with member algorithm. | Stephen Kelly | 2015-01-18 | 1 | -7/+3 | |
| * | | | | | | | | | | | | | | Convert raw loops to set member insert. | Stephen Kelly | 2015-01-18 | 2 | -10/+3 | |
| * | | | | | | | | | | | | | | Convert raw loops to vector member insert. | Stephen Kelly | 2015-01-18 | 2 | -10/+4 | |
| |/ / / / / / / / / / / / / | ||||||
* | | | | | | | | | | | | | | Merge topic 'delete-algorithm' | Brad King | 2015-01-19 | 4 | -25/+21 | |
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | ||||||
| * | | | | | | | | | | | | | | Use the cmDeleteAll algorithm for types derived from std::map. | Stephen Kelly | 2015-01-17 | 3 | -21/+4 | |
| * | | | | | | | | | | | | | | cmDeleteAll: Generalize deletion specialization for map types. | Stephen Kelly | 2015-01-17 | 1 | -4/+17 | |
| | |_|_|_|_|_|_|_|_|_|_|/ / | |/| | | | | | | | | | | | | ||||||
* | | | | | | | | | | | | | | Merge topic 'remove-AppleClang-51-release-notes' | Brad King | 2015-01-19 | 1 | -5/+0 | |
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | ||||||
| * | | | | | | | | | | | | | | Remove AppleClang-5.1-features.rst release notes. | Stephen Kelly | 2015-01-17 | 1 | -5/+0 | |
| |/ / / / / / / / / / / / / | ||||||
* | | | | | | | | | | | | | | Merge topic 'FindQt-fixes' | Brad King | 2015-01-19 | 1 | -3/+10 | |
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | | |_|_|_|_|_|_|_|/ / / / / | |/| | | | | | | | | | | | | ||||||
| * | | | | | | | | | | | | | FindQt: explicitely mention that it cannot Qt5 or later | Rolf Eike Beer | 2015-01-16 | 1 | -0/+3 | |
| * | | | | | | | | | | | | | FindQt: fix variable name in error message | Rolf Eike Beer | 2015-01-16 | 1 | -2/+2 | |
| * | | | | | | | | | | | | | FindQt: fix setting DESIRED_QT_VERSION if "find_package(Qt VVV)" was called | Rolf Eike Beer | 2015-01-16 | 1 | -1/+5 | |
| | |_|/ / / / / / / / / / | |/| | | | | | | | | | | | ||||||
* | | | | | | | | | | | | | Merge topic 'fix-cmake-org-links' | Brad King | 2015-01-19 | 3 | -4/+4 | |
|\ \ \ \ \ \ \ \ \ \ \ \ \ | | |_|_|_|_|_|_|/ / / / / | |/| | | | | | | | | | | | ||||||
| * | | | | | | | | | | | | Help: Update cmake.org links to avoid redirects | William Lynch | 2015-01-16 | 3 | -4/+4 | |
| | |_|_|_|_|_|_|_|_|_|/ | |/| | | | | | | | | | | ||||||
* | | | | | | | | | | | | Merge topic 'emacs-mode-fix-word-at-point' | Brad King | 2015-01-19 | 1 | -3/+7 | |
|\ \ \ \ \ \ \ \ \ \ \ \ | | |_|_|_|_|_|_|_|/ / / | |/| | | | | | | | | | | ||||||
| * | | | | | | | | | | | cmake-mode.el: Fix extracting keyword at point in cmake-help | Peter Vasil | 2015-01-19 | 1 | -3/+7 | |
* | | | | | | | | | | | | Merge topic 'add-FindJsonCpp' | Brad King | 2015-01-19 | 8 | -0/+159 | |
|\ \ \ \ \ \ \ \ \ \ \ \ | ||||||
| * | | | | | | | | | | | | FindJsonCpp: Add module to find JsonCpp package | Brad King | 2015-01-19 | 8 | -0/+159 | |
| | |_|_|_|_|_|_|_|_|/ / | |/| | | | | | | | | | | ||||||
* | | | | | | | | | | | | Merge topic 'eclipse-fix-cxx-natures' | Brad King | 2015-01-19 | 1 | -0/+1 | |
|\ \ \ \ \ \ \ \ \ \ \ \ | | |_|_|_|_|_|_|_|_|/ / | |/| | | | | | | | | | | ||||||
| * | | | | | | | | | | | Eclipse: Add org.eclipse.cdt.core.cnature to CXX projects (#15068) | André Klitzing | 2015-01-16 | 1 | -0/+1 | |
* | | | | | | | | | | | | CMake Nightly Date Stamp | Kitware Robot | 2015-01-19 | 1 | -1/+1 | |
| |_|_|_|_|_|/ / / / / |/| | | | | | | | | | | ||||||
* | | | | | | | | | | | CMake Nightly Date Stamp | Kitware Robot | 2015-01-18 | 1 | -1/+1 | |
| |_|_|_|_|/ / / / / |/| | | | | | | | | | ||||||
* | | | | | | | | | | CMake Nightly Date Stamp | Kitware Robot | 2015-01-17 | 1 | -1/+1 | |
| |_|_|_|_|_|_|_|/ |/| | | | | | | | |