1
0
forked from 0ad/0ad

Fix missing includes when building without precompiled headers

Patch By: @Riesi
Comments By: @sera
Differential Revision: https://code.wildfiregames.com/D5209
This was SVN commit r27973.
This commit is contained in:
phosit 2023-12-04 20:23:37 +00:00
parent 3a3ecb6727
commit 2abf0d8db2
7 changed files with 8 additions and 1 deletions

View File

@ -245,6 +245,7 @@
{ "nick": "RedFox", "name": "Jorma Rebane" },
{ "nick": "RefinedCode" },
{ "nick": "Riemer" },
{ "nick": "Riesi" },
{ "name": "Rolf Sievers" },
{ "nick": "s0600204", "name": "Matthew Norwood" },
{ "nick": "sacha_vrand", "name": "Sacha Vrand" },

View File

@ -28,7 +28,6 @@
#include "maths/MathUtil.h"
#include "ps/CLogger.h"
#include "ps/FileIo.h"
#include "ps/Profile.h"
#include "ps/scripting/JSInterface_VFS.h"
#include "ps/TemplateLoader.h"
#include "scriptinterface/FunctionWrapper.h"

View File

@ -19,6 +19,7 @@
#define INCLUDED_MAPGENERATOR
#include "lib/file/vfs/vfs_path.h"
#include "scriptinterface/ScriptTypes.h"
#include "scriptinterface/StructuredClone.h"
#include <atomic>

View File

@ -32,6 +32,7 @@
#include "maths/MathUtil.h"
#include "ps/CLogger.h"
#include "ps/Loader.h"
#include "ps/Profiler2.h"
#include "ps/TaskManager.h"
#include "ps/World.h"
#include "ps/XML/Xeromyces.h"

View File

@ -32,6 +32,7 @@
#include "lib/file/io/io.h"
#include "ps/ConfigDB.h"
#include "ps/CStrInternStatic.h"
#include "ps/Filesystem.h"
#include "ps/ProfileViewer.h"
#include "ps/VideoMode.h"
#include "ps/XML/Xeromyces.h"

View File

@ -25,6 +25,8 @@
#include "ps/Filesystem.h"
#include "ps/Pyrogenesis.h"
#include <iomanip>
// not thread-safe!
static const wchar_t* HardcodedErrorString(int err)
{

View File

@ -18,6 +18,8 @@
#ifndef INCLUDED_JSI_VFS
#define INCLUDED_JSI_VFS
#include "scriptinterface/ScriptTypes.h"
class ScriptRequest;
namespace JSI_VFS