mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-19 06:43:58 -07:00
20 lines
345 B
C++
20 lines
345 B
C++
// Precompiled headers:
|
|
|
|
#ifdef _MSC_VER
|
|
# define _SCL_SECURE_NO_DEPRECATE // shut up, std::copy isn't deprecated
|
|
#endif
|
|
|
|
#ifdef USING_PCH
|
|
|
|
// Exclude rarely-used stuff from Windows headers
|
|
#ifdef _WIN32
|
|
# define WIN32_LEAN_AND_MEAN
|
|
#endif
|
|
|
|
#include <vector>
|
|
#include <string>
|
|
#include <set>
|
|
#include <stack>
|
|
#include <map>
|
|
|
|
#endif // USING_PCH
|