summaryrefslogtreecommitdiffstats
path: root/Source/cmDisallowedCommand.cxx
Commit message (Collapse)AuthorAgeFilesLines
* cmCommand refactor: remove cmDisallowedCommand classGabor Bencze2019-08-261-29/+0
|
* cmCommand: deprecate functions GetMakefile and SetErrorDaniel Pfeifer2019-07-211-4/+2
| | | | | | | | | Replace the members for the Makefile and the Error with a cmExecutionStatus. Re-implement GetMakefile and SetError based on that. Both functions should be called directly on the cmExecutionStatus that is passed to InitialPass. This will help us make all Commands immutable and remove the need for cloning.
* Factor out enum MessageType into dedicated headerBruno Manganelli2019-01-161-3/+3
| | | | Reduce the number of files relying on `cmake.h`.
* cmDisallowedCommand: extract policy checking from cmCommandDaniel Pfeifer2017-02-131-0/+31
Implement cmDisallowedCommand as a wrapper class for cmCommand.