forked from Mirrorlandia_minetest/minetest
main.cpp: server-only builds should not include client headers
This commit is contained in:
parent
a3c298e1d1
commit
151c95bb9b
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user