Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | cmServer: include what you use | Daniel Pfeifer | 2017-05-05 | 1 | -1/+3 |
| | |||||
* | Use quotes for non-system includes | Daniel Pfeifer | 2017-04-11 | 1 | -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 first | Brad King | 2017-03-07 | 1 | -0/+2 |
| | | | | | We need this to make Large File Support definitions consistent with other translation units. | ||||
* | Avoid some copies | Daniel Pfeifer | 2016-10-30 | 1 | -1/+1 |
| | |||||
* | server-mode: Add infrastructure to watch the filesystem | Tobias Hunger | 2016-09-29 | 1 | -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" |