summaryrefslogtreecommitdiffstats
path: root/Source/cmOutputConverter.h
Commit message (Collapse)AuthorAgeFilesLines
* cmOutputConverter: Remove now-obsolete Convert methodStephen Kelly2016-09-191-22/+0
|
* Convert: Remove HOME_OUTPUT enum valueStephen Kelly2016-09-191-1/+0
|
* Convert: Remove obsolete MAKERULE enum valueStephen Kelly2016-09-191-1/+0
|
* Convert: Remove obsolete HOME and START enum valuesStephen Kelly2016-09-191-2/+0
|
* cmOutputConverter: split ConvertToRelativePathDaniel Pfeifer2016-09-171-0/+18
| | | | | | | Split the ConvertToRelativePath funtion into ConvertToRelativePath and ForceToRelativePath. Both functions take the local path as a string rather than a vector of path segments. Reimplement the old interface on top of the two new functions for interface compatibility.
* fix a load of include-what-you-use violationsDaniel Pfeifer2016-09-031-4/+4
|
* make sure to include cmConfigure.h before cmStandardIncludes.hDaniel Pfeifer2016-09-031-0/+2
|
* Convert: Remove UNCHANGED enum valueStephen Kelly2016-08-271-2/+1
| | | | It is no longer used.
* Convert: Remove 'FULL' conversionStephen Kelly2016-08-271-1/+0
| | | | It is no longer used.
* Convert: Extract ConvertToRelativePath from Convert()Stephen Kelly2016-08-271-0/+2
| | | | | | | Convert() does some kind of relative conversion, followed by a conversion to 'output format'. Make it possible to do the former without the latter.
* Convert: Remove NONE conversionStephen Kelly2016-08-271-1/+0
| | | | It is no longer used.
* Convert: Remove obsolete GetRelativeRootPathStephen Kelly2016-08-271-5/+0
|
* Convert: Remove ConvertToOutputForExisting overloadStephen Kelly2016-08-271-5/+0
| | | | It is no longer used.
* Convert: Remove unused overloadStephen Kelly2016-08-271-2/+0
|
* cmOutputConverter: collapse ConvertToOutputForExisting functionsDaniel Pfeifer2016-06-201-4/+0
|
* cmOutputConverter: remove unused 'local' argumentDaniel Pfeifer2016-06-201-2/+0
|
* cmOutputConverter: remove 'optional' argumentDaniel Pfeifer2016-06-201-2/+1
| | | | | | Remove the 'optional' paramenter from the second overload of the Convert function. This parameter is used from one single location. Inline the codepath for which the argument is true to the callsite.
* cmOutputConverter: implement Shell__GetArgument using ostringstreamDaniel Pfeifer2016-06-151-14/+3
| | | | | This removes the need to calculate the resulting string length beforehand.
* Revise C++ coding style using clang-formatKitware Robot2016-05-161-23/+35
| | | | | | | | | | | | | Run the `Utilities/Scripts/clang-format.bash` script to update all our C++ code to a new style defined by `.clang-format`. Use `clang-format` version 3.8. * If you reached this commit for a line in `git blame`, re-run the blame operation starting at the parent of this commit to see older history for the content. * See the parent commit for instructions to rebase a change across this style transition commit.
* Genex: Add a SHELL_PATH expressionStefan Kislinskiy2015-09-281-0/+2
| | | | | | | | | Some commands on Windows do not understand forward slash paths and require backslashes. In order to help projects generate shell invocations of such commands, provide a generator expression to convert paths to the shell-preferred path format for the current generator. This will allow custom commands to generate paths the same way CMake does for compiler command invocations.
* cmOutputConverter: Adopt command line escaping codeBrad King2015-07-081-0/+70
| | | | | | | Port code from the KWSys System_Shell APIs into cmOutputConverter. Drop it from our copy of KWSys because upstream will drop it too, and by doing it in this commit 'git blame' may have an easier time connecting the history of the content.
* cmOutputConverter: Adopt EscapeWindowsShellArgument methodBrad King2015-07-081-0/+5
| | | | Move it out of cmSystemTools and into cmOutputConverter.
* cmOutputConverter: Constify API.Stephen Kelly2015-06-211-9/+9
|
* cmOutputConverter: Extract from cmLocalGenerator.Stephen Kelly2015-06-061-0/+106
The Convert methods never belonged to the local generator concept, so split them out now. The cmOutputConverter is cheap to construct and destroy, so it can be instantiated where needed to perform conversions. This will allow further decoupling of cmLocalGenerator from the configure step. Inherit cmLocalGenerator from cmOutputConverter for the purpose of source compatibility.