summaryrefslogtreecommitdiffstats
path: root/Source/cmFileMonitor.h
Commit message (Collapse)AuthorAgeFilesLines
* server: remove deprecated 'cmake -E server' modeBrad King2020-10-141-35/+0
| | | | | | The server mode has been deprecated since commit 996e1885c4 (server: deprecate in favor of the file-api, 2019-04-19, v3.15.0-rc1~198^2). Clients should now be using the file-api. Remove the server mode.
* Refactoring: Third-parties public headers are under cm3p prefixMarc Chevrier2020-05-071-1/+1
| | | | Fixes: #20666
* cmFileMonitor: modernize memory managementMarc Chevrier2019-12-191-1/+2
|
* 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"