summaryrefslogtreecommitdiffstats
path: root/Source/cmStateTypes.h
Commit message (Collapse)AuthorAgeFilesLines
* Replace boolean `implib` parameters with enumGregor Jasny2017-04-201-0/+6
| | | | | Named enumeration values are much clearer at call sites and add more type safety.
* Use quotes for non-system includesDaniel Pfeifer2017-04-111-1/+1
| | | | | | | | | | | | | Automate with: git grep -l '#include <cm_' -- Source \ | xargs sed -i 's/#include <\(cm_.*\)>/#include "\1"/g' git grep -l '#include <cmsys/' -- Source \ | xargs sed -i 's/#include <\(cmsys\/.*\)>/#include "\1"/g' git grep -l '#include <cm[A-Z]' -- Source \ | xargs sed -i 's/#include <\(cm[A-Z].*\)>/#include "\1"/g'
* cmStateTypes: document that the ordering of targets is importantBen Boeckel2017-03-071-0/+3
| | | | | The ordering is assumed in many places throughout the code and modification of the enumeration should be done carefully.
* Fix several include-what-you-use findingsDaniel Pfeifer2016-11-081-2/+2
|
* cmState: Move extracted declarations to a separate fileStephen Kelly2016-10-191-0/+55