mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-14 16:40:56 +00:00
c3edfdd946
Precompilation of prefix header for GCC and Clang requires some efforts thanks to CMake which doesn't support this feature out of the box Existing thirparty solutions must be tuned to our needs, and our configuration should be adjusted to a chosen module
33 lines
No EOL
762 B
C++
33 lines
No EOL
762 B
C++
#include <stddef.h>
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <float.h>
|
|
#include <math.h>
|
|
#include <limits.h>
|
|
#include <stdarg.h>
|
|
#include <errno.h>
|
|
#include <ctype.h>
|
|
#include <stdint.h>
|
|
#include <zlib.h>
|
|
#include <new>
|
|
#include <algorithm>
|
|
#include <forward_list>
|
|
#include <sys/stat.h>
|
|
#include <sys/types.h>
|
|
#include <cassert>
|
|
#ifdef _MSC_VER
|
|
#include <direct.h>
|
|
#include <io.h>
|
|
#endif // _MSC_VER
|
|
#include <limits>
|
|
#include <memory>
|
|
#include <tuple>
|
|
#include <vector>
|
|
#include <utility>
|
|
#include <functional>
|
|
|
|
// These two headers get included nearly everywhere so it doesn't matter if changing them forces a few more recompiles.
|
|
// The overall savings from PCHing them are more significant.
|
|
#include "tarray.h"
|
|
#include "zstring.h" |