main.cpp: server-only builds should not include client headers

This commit is contained in:
Loic Blot 2017-09-07 23:51:06 +02:00
parent a3c298e1d1
commit 151c95bb9b
No known key found for this signature in database
GPG Key ID: EFAA458E8C153987
1 changed files with 3 additions and 3 deletions

View File

@ -18,7 +18,6 @@ with this program; if not, write to the Free Software Foundation, Inc.,
*/
#include "irrlicht.h" // createDevice
#include "mainmenumanager.h"
#include "irrlichttypes_extrabloated.h"
#include "chat_interface.h"
#include "debug.h"
@ -26,14 +25,12 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#include "server.h"
#include "filesys.h"
#include "version.h"
#include "guiMainMenu.h"
#include "game.h"
#include "defaultsettings.h"
#include "gettext.h"
#include "log.h"
#include "quicktune.h"
#include "httpfetch.h"
#include "guiEngine.h"
#include "gameparams.h"
#include "database.h"
#include "config.h"
@ -44,7 +41,10 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#include "terminal_chat_console.h"
#endif
#ifndef SERVER
#include "guiMainMenu.h"
#include "client/clientlauncher.h"
#include "guiEngine.h"
#include "mainmenumanager.h"
#endif
#ifdef HAVE_TOUCHSCREENGUI