vcpkg/toolsrc/include/pch.h

59 lines
1.0 KiB
C
Raw Normal View History

2017-01-28 04:49:09 +08:00
#pragma once
#if defined(_WIN32)
2017-01-28 04:49:09 +08:00
#define NOMINMAX
2017-03-28 15:02:33 +08:00
#define WIN32_LEAN_AND_MEAN
2017-10-03 07:55:06 +08:00
#pragma warning(suppress : 4768)
#include <windows.h>
#pragma warning(suppress : 4768)
#include <Shlobj.h>
#include <process.h>
#include <shellapi.h>
#include <winhttp.h>
#else
#include <unistd.h>
#endif
2017-03-28 15:02:33 +08:00
#include <algorithm>
2017-01-28 06:33:54 +08:00
#include <array>
#include <atomic>
2017-03-28 15:02:33 +08:00
#include <cassert>
#include <cctype>
#include <chrono>
#include <codecvt>
#include <cstdarg>
#include <cstddef>
2017-03-28 15:02:33 +08:00
#include <cstdint>
#if defined(_WIN32)
2017-01-28 06:37:14 +08:00
#include <filesystem>
#else
#include <experimental/filesystem>
#endif
#include <cstring>
2017-01-28 06:33:54 +08:00
#include <fstream>
#include <functional>
2017-03-28 15:02:33 +08:00
#include <iomanip>
#include <iostream>
2017-01-28 04:49:09 +08:00
#include <iterator>
2017-03-28 15:02:33 +08:00
#include <map>
#include <memory>
#include <mutex>
#include <random>
2017-03-28 15:02:33 +08:00
#include <regex>
#include <set>
#include <stdexcept>
#include <string>
2017-01-28 06:33:54 +08:00
#include <sys/timeb.h>
#include <sys/types.h>
2017-03-28 15:02:33 +08:00
#include <system_error>
#include <thread>
2017-01-28 06:33:54 +08:00
#include <time.h>
#include <type_traits>
2017-03-28 15:02:33 +08:00
#include <unordered_map>
#include <unordered_set>
#include <utility>
#include <vector>