summaryrefslogtreecommitdiffstats
path: root/Source
Commit message (Expand)AuthorAgeFilesLines
...
| * | | | | | | | Fix: `while()` can silently ignore incorrect conditionAlex Turbov2021-08-091-18/+18
| * | | | | | | | Fix: Regression in the `cmConditionEvaluator::HandleLevel0`Alex Turbov2021-08-091-1/+7
* | | | | | | | | CMake Nightly Date StampKitware Robot2021-08-181-1/+1
* | | | | | | | | CMake Nightly Date StampKitware Robot2021-08-171-1/+1
| |_|/ / / / / / |/| | | | | | |
* | | | | | | | CMake Nightly Date StampKitware Robot2021-08-161-1/+1
* | | | | | | | CMake Nightly Date StampKitware Robot2021-08-151-1/+1
* | | | | | | | Merge topic 'refactor-cmStandardLevelResolver_ComputeFeaturesAvailable-return...Marc Chevrier2021-08-143-6/+6
|\ \ \ \ \ \ \ \
| * | | | | | | | Refactor: cmStandardLevelResolver::ComputeFeaturesAvailable returns cmPropMarc Chevrier2021-08-123-6/+6
* | | | | | | | | CMake Nightly Date StampKitware Robot2021-08-141-1/+1
| |_|/ / / / / / |/| | | | | | |
* | | | | | | | CMake Nightly Date StampKitware Robot2021-08-131-1/+1
|/ / / / / / /
* | | | | | | CMake Nightly Date StampKitware Robot2021-08-121-1/+1
* | | | | | | Merge topic 'refactor-cmTest_GetProperty-returns-cmProp'Brad King2021-08-114-14/+19
|\ \ \ \ \ \ \
| * | | | | | | Refactor: cmTest::GetProperty returns cmPropMarc Chevrier2021-08-094-14/+19
| |/ / / / / /
* | | | | | | Merge topic 'refactor-cmGeneratorTarget_GetSourcesProperty-returns-cmProp'Brad King2021-08-112-4/+4
|\ \ \ \ \ \ \
| * | | | | | | Refactor: cmGeneratorTarget::GetSourcesProperty returns cmPropMarc Chevrier2021-08-092-4/+4
| |/ / / / / /
* | | | | | | Merge topic 'refactor-cmCommonTargetGenerator_GetFeature-returns-cmProp'Brad King2021-08-112-5/+6
|\ \ \ \ \ \ \
| * | | | | | | Refactor: cmCommonTargetGenerator::GetFeature returns cmPropMarc Chevrier2021-08-092-5/+6
| |/ / / / / /
* | | | | | | Merge topic 'refactor-cmGlobalGenerator_GetGlobalSetting-returns-cmProp'Brad King2021-08-112-4/+5
|\ \ \ \ \ \ \
| * | | | | | | Refactor: cmGlobalGenerator::GetGlobalSetting returns cmPropMarc Chevrier2021-08-092-4/+5
| |/ / / / / /
* | | | | | | CMake Nightly Date StampKitware Robot2021-08-111-1/+1
* | | | | | | Merge topic 'symlinks-rebase-master'Brad King2021-08-104-3/+142
|\ \ \ \ \ \ \
| * | | | | | | Alternative symlink-creating mode for file(INSTALL ...)Felix Lelchuk2021-08-024-3/+142
| | |_|_|_|/ / | |/| | | | |
* | | | | | | CMake Nightly Date StampKitware Robot2021-08-101-1/+1
| |/ / / / / |/| | | | |
* | | | | | Merge topic 'cmProp-class'Brad King2021-08-0939-224/+481
|\ \ \ \ \ \
| * | | | | | cmProp: refactoring: transform alias in classMarc Chevrier2021-08-0839-224/+481
* | | | | | | CMake Nightly Date StampKitware Robot2021-08-091-1/+1
* | | | | | | CMake Nightly Date StampKitware Robot2021-08-081-1/+1
| |_|_|_|_|/ |/| | | | |
* | | | | | CMake Nightly Date StampKitware Robot2021-08-071-1/+1
|/ / / / /
* | | | | Merge topic 'refactor-conditions-evaluation'Brad King2021-08-062-474/+520
|\ \ \ \ \
| * | | | | Refactor: Move version compare op table out of the functionAlex Turbov2021-08-031-7/+7
| * | | | | Refactor: Remove redundant checks for `0` and `1` literalsAlex Turbov2021-08-031-9/+1
| * | | | | Refactor: Copy exactly required count of args and avoid `pop_back()`Alex Turbov2021-08-031-6/+7
| * | | | | Style: Better names of local vars for `IN_LIST` handlerAlex Turbov2021-08-031-4/+6
| * | | | | Refactor: Extract the logic of testing for special variable to funcAlex Turbov2021-08-031-14/+27
| * | | | | Refactor: Introduce `cmArgumentList` container classAlex Turbov2021-08-032-154/+209
| * | | | | Refactor: Reduce one more condition checking on handling math compareAlex Turbov2021-08-031-12/+13
| * | | | | Refactor: Avoid `if` → `else if` → … for compare operatorsAlex Turbov2021-08-032-62/+104
| * | | | | Refactor: Set `const` to `cmConditionEvaluator::IsKeyword` parametersAlex Turbov2021-08-032-3/+4
| * | | | | Refactor: No need to move iterators after matchAlex Turbov2021-08-031-40/+28
| * | | | | Refactor: Replace `std::to_string` w/ more specialized `bool2string`Alex Turbov2021-08-031-5/+9
| * | | | | Refactor: Reorder `MATCHES` handler from top below to the fail-fastAlex Turbov2021-08-031-18/+18
| * | | | | Refactor: Reduce variables scope in `HandleLevel2`Alex Turbov2021-08-031-14/+12
| * | | | | Refactor: Simplify boolean to string result assignmentsAlex Turbov2021-08-031-5/+4
| * | | | | Refactor: Replace `if` block w/ boolean expressionAlex Turbov2021-08-031-6/+2
| * | | | | Refactor: Avoid redundant `operator<<` on printing messagesAlex Turbov2021-08-031-9/+15
| * | | | | Refactor: Opt-out do+while loops and reduce nesting level in handlersAlex Turbov2021-08-031-309/+287
| * | | | | Refactor: Remove `reducible` flag from `handleLevelN()` functionsAlex Turbov2021-08-031-45/+45
| * | | | | Refactor: Make `cmConditionEvaluator::IsTrue` a bit more compactAlex Turbov2021-08-031-19/+13
| * | | | | Refactor: Generalize policy checking in `HandleLevel1`Alex Turbov2021-07-261-18/+25
| * | | | | Refactor: When handle predicates, there is no need to check 2nd argAlex Turbov2021-07-261-30/+34