diff options
author | Brad King <brad.king@kitware.com> | 2019-08-20 12:55:03 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-08-20 13:36:45 (GMT) |
commit | c1787cb5eb82ad815a824f88d4cc636e949fae73 (patch) | |
tree | 5479b8fc6df2a0b2efb43db5dee4759d7cec2ad6 /Source | |
parent | 141e3074845675d37a8c7f7c3efcc09d0ab5158c (diff) | |
download | CMake-c1787cb5eb82ad815a824f88d4cc636e949fae73.zip CMake-c1787cb5eb82ad815a824f88d4cc636e949fae73.tar.gz CMake-c1787cb5eb82ad815a824f88d4cc636e949fae73.tar.bz2 |
cpack.cxx: Re-order include blocks to follow our conventions
Diffstat (limited to 'Source')
-rw-r--r-- | Source/CPack/cpack.cxx | 29 |
1 files changed, 15 insertions, 14 deletions
diff --git a/Source/CPack/cpack.cxx b/Source/CPack/cpack.cxx index 3cf0c10..5abf0ab 100644 --- a/Source/CPack/cpack.cxx +++ b/Source/CPack/cpack.cxx @@ -1,20 +1,6 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying file Copyright.txt or https://cmake.org/licensing for details. */ -#include "cmsys/CommandLineArguments.hxx" -#include "cmsys/Encoding.hxx" -#include <iostream> -#include <map> -#include <sstream> -#include <stddef.h> -#include <string> -#include <utility> -#include <vector> - -#if defined(_WIN32) && !defined(CMAKE_BOOTSTRAP) -# include "cmsys/ConsoleBuf.hxx" -#endif - #include "cmCPackGenerator.h" #include "cmCPackGeneratorFactory.h" #include "cmCPackLog.h" @@ -29,6 +15,21 @@ #include "cmSystemTools.h" #include "cmake.h" +#include "cmsys/CommandLineArguments.hxx" +#include "cmsys/Encoding.hxx" + +#if defined(_WIN32) && !defined(CMAKE_BOOTSTRAP) +# include "cmsys/ConsoleBuf.hxx" +#endif + +#include <iostream> +#include <map> +#include <sstream> +#include <stddef.h> +#include <string> +#include <utility> +#include <vector> + namespace { const char* cmDocumentationName[][2] = { { nullptr, " cpack - Packaging driver provided by CMake." }, |