aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/include
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-01-27 12:49:09 -0800
committerAlexander Karatarakis <alkarata@microsoft.com>2017-01-30 21:52:42 -0800
commit050e4a0f7a8156bd862f95c06ea298ab6697e147 (patch)
treebf384f4faa0d10e957519ba42c752fae537283b0 /toolsrc/include
parent4ded91423aa1dfa3ad8bb7a57879f48d58b9b786 (diff)
downloadvcpkg-050e4a0f7a8156bd862f95c06ea298ab6697e147.tar.gz
vcpkg-050e4a0f7a8156bd862f95c06ea298ab6697e147.zip
Introduce precompiled headers
Diffstat (limited to 'toolsrc/include')
-rw-r--r--toolsrc/include/pch.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/toolsrc/include/pch.h b/toolsrc/include/pch.h
new file mode 100644
index 000000000..48aca2b77
--- /dev/null
+++ b/toolsrc/include/pch.h
@@ -0,0 +1,38 @@
+#pragma once
+
+#define WIN32_LEAN_AND_MEAN
+#define NOMINMAX
+#include <Windows.h>
+#include <shellapi.h>
+#include <Shlobj.h>
+#include <winhttp.h>
+
+#include <iostream>
+#include <fstream>
+#include <memory>
+#include <cassert>
+#include <cstdarg>
+#include <codecvt>
+#include <cctype>
+
+#include <set>
+#include <map>
+#include <unordered_set>
+#include <unordered_map>
+#include <fstream>
+#include <regex>
+#include <array>
+#include <iomanip>
+
+#include <iterator>
+#include <utility>
+#include <sys/timeb.h>
+#include <time.h>
+
+#include <algorithm>
+#include <functional>
+#include <string>
+#include <vector>
+
+#include <stdexcept>
+#include <system_error> \ No newline at end of file