diff options
author | Daniel Pfeifer <daniel@pfeifer-mail.de> | 2017-04-11 20:00:21 (GMT) |
---|---|---|
committer | Daniel Pfeifer <daniel@pfeifer-mail.de> | 2017-04-11 20:35:21 (GMT) |
commit | 1d829c862cf9d7f813f8e7e1a43f0125a4de7220 (patch) | |
tree | f467a66bb477a0467c3466096d4684dedde0c13a /Source/cmExportLibraryDependenciesCommand.cxx | |
parent | 26ee9e42916b15150cbd02ec9eec81825b0e4611 (diff) | |
download | CMake-1d829c862cf9d7f813f8e7e1a43f0125a4de7220.zip CMake-1d829c862cf9d7f813f8e7e1a43f0125a4de7220.tar.gz CMake-1d829c862cf9d7f813f8e7e1a43f0125a4de7220.tar.bz2 |
Use quotes for non-system includes
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'
Diffstat (limited to 'Source/cmExportLibraryDependenciesCommand.cxx')
-rw-r--r-- | Source/cmExportLibraryDependenciesCommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmExportLibraryDependenciesCommand.cxx b/Source/cmExportLibraryDependenciesCommand.cxx index deecad8..69150ae 100644 --- a/Source/cmExportLibraryDependenciesCommand.cxx +++ b/Source/cmExportLibraryDependenciesCommand.cxx @@ -2,7 +2,7 @@ file Copyright.txt or https://cmake.org/licensing for details. */ #include "cmExportLibraryDependenciesCommand.h" -#include <cmsys/FStream.hxx> +#include "cmsys/FStream.hxx" #include <map> #include <utility> |