summaryrefslogtreecommitdiffstats
path: root/Source/CPack/cmCPackNSISGenerator.cxx
diff options
context:
space:
mode:
authorDaniel Pfeifer <daniel@pfeifer-mail.de>2016-09-06 22:21:35 (GMT)
committerDaniel Pfeifer <daniel@pfeifer-mail.de>2016-09-06 22:21:35 (GMT)
commitd47c7bf608d3ca23c8d518ff98a42d6d5f449a70 (patch)
treefe75032bc2be3b38b8ac1e42afd5d7ce2cc5a3ad /Source/CPack/cmCPackNSISGenerator.cxx
parent8317ea01aa3cf9319ef907e127fa6dbf9666cc53 (diff)
downloadCMake-d47c7bf608d3ca23c8d518ff98a42d6d5f449a70.zip
CMake-d47c7bf608d3ca23c8d518ff98a42d6d5f449a70.tar.gz
CMake-d47c7bf608d3ca23c8d518ff98a42d6d5f449a70.tar.bz2
CPack: include what you use
Diffstat (limited to 'Source/CPack/cmCPackNSISGenerator.cxx')
-rw-r--r--Source/CPack/cmCPackNSISGenerator.cxx11
1 files changed, 7 insertions, 4 deletions
diff --git a/Source/CPack/cmCPackNSISGenerator.cxx b/Source/CPack/cmCPackNSISGenerator.cxx
index d8ff907..2db94f1 100644
--- a/Source/CPack/cmCPackNSISGenerator.cxx
+++ b/Source/CPack/cmCPackNSISGenerator.cxx
@@ -13,16 +13,19 @@
#include "cmCPackNSISGenerator.h"
#include "cmCPackComponentGroup.h"
+#include "cmCPackGenerator.h"
#include "cmCPackLog.h"
#include "cmGeneratedFileStream.h"
-#include "cmGlobalGenerator.h"
-#include "cmMakefile.h"
#include "cmSystemTools.h"
+#include <algorithm>
#include <cmsys/Directory.hxx>
-#include <cmsys/Glob.hxx>
#include <cmsys/RegularExpression.hxx>
-#include <cmsys/SystemTools.hxx>
+#include <map>
+#include <sstream>
+#include <stdlib.h>
+#include <string.h>
+#include <utility>
/* NSIS uses different command line syntax on Windows and others */
#ifdef _WIN32