[Bots] Fix Linux build

This commit is contained in:
Foereaper 2015-04-04 03:36:14 -07:00
parent 25a40d4b4e
commit 7fb0d3631e
6 changed files with 7 additions and 5 deletions

View File

@ -39,6 +39,7 @@ include_directories(
"${CMAKE_SOURCE_DIR}/dep/recastnavigation/"
"${CMAKE_SOURCE_DIR}/dep/include"
"${CMAKE_SOURCE_DIR}/src/shared"
"${CMAKE_SOURCE_DIR}/src/shared/Config"
"${CMAKE_SOURCE_DIR}/src/shared/Common"
"${CMAKE_SOURCE_DIR}/src/shared/Database"
"${CMAKE_SOURCE_DIR}/src/shared/DataStores"

View File

@ -129,6 +129,7 @@ include_directories(
${CMAKE_SOURCE_DIR}/src/game/vmap
${CMAKE_SOURCE_DIR}/src/game/WorldHandlers
${CMAKE_SOURCE_DIR}/src/shared
${CMAKE_SOURCE_DIR}/src/shared/Config
${CMAKE_SOURCE_DIR}/src/shared/Common
${CMAKE_SOURCE_DIR}/src/shared/Database
${CMAKE_SOURCE_DIR}/src/shared/DataStores
@ -181,4 +182,4 @@ endif()
# Generate PCH
if(PCH)
ADD_CXX_PCH(Bots ${bots_PCH})
endif()
endif()

View File

@ -2,7 +2,7 @@
#include "ItemBag.h"
#include "AhBot.h"
#include "World.h"
#include "config/Config.h"
#include "Config.h"
#include "Chat.h"
#include "AhBotConfig.h"
#include "AuctionHouseMgr.h"

View File

@ -1,5 +1,5 @@
#pragma once
#include "config/Config.h"
#include "Config.h"
#include "PricingStrategy.h"
#include "ItemPrototype.h"
#include "SharedDefines.h"

View File

@ -1,5 +1,5 @@
#pragma once
#include "config/Config.h"
#include "Config.h"
#include "ItemPrototype.h"
using namespace std;

View File

@ -1,6 +1,6 @@
#pragma once
#include "config/Config.h"
#include "Config.h"
class Player;
class PlayerbotMgr;