summaryrefslogtreecommitdiffstats
path: root/Source/cmFileMonitor.h
Commit message (Collapse)AuthorAgeFilesLines
* clang-tidy: Use `= delete`Regina Pfeifer2019-01-291-1/+3
|
* IWYU: Mark cmConfigure.h with pragma: keepDaniel Pfeifer2017-08-261-1/+1
| | | | Also remove `#include "cmConfigure.h"` from most source files.
* cmServer: include what you useDaniel Pfeifer2017-05-051-1/+3
|
* 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'
* cmFileMonitor.h: Include cmConfigure.h firstBrad King2017-03-071-0/+2
| | | | | We need this to make Large File Support definitions consistent with other translation units.
* Avoid some copiesDaniel Pfeifer2016-10-301-1/+1
|
* server-mode: Add infrastructure to watch the filesystemTobias Hunger2016-09-291-0/+28
Enable the server to watch for filesystem changes. This patch includes * The infrastructure for the file watching * makes that infrastructure available to cmServerProtocols * Resets the filesystemwatchers on "configure"