[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/recastnavigation/"
"${CMAKE_SOURCE_DIR}/dep/include" "${CMAKE_SOURCE_DIR}/dep/include"
"${CMAKE_SOURCE_DIR}/src/shared" "${CMAKE_SOURCE_DIR}/src/shared"
"${CMAKE_SOURCE_DIR}/src/shared/Config"
"${CMAKE_SOURCE_DIR}/src/shared/Common" "${CMAKE_SOURCE_DIR}/src/shared/Common"
"${CMAKE_SOURCE_DIR}/src/shared/Database" "${CMAKE_SOURCE_DIR}/src/shared/Database"
"${CMAKE_SOURCE_DIR}/src/shared/DataStores" "${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/vmap
${CMAKE_SOURCE_DIR}/src/game/WorldHandlers ${CMAKE_SOURCE_DIR}/src/game/WorldHandlers
${CMAKE_SOURCE_DIR}/src/shared ${CMAKE_SOURCE_DIR}/src/shared
${CMAKE_SOURCE_DIR}/src/shared/Config
${CMAKE_SOURCE_DIR}/src/shared/Common ${CMAKE_SOURCE_DIR}/src/shared/Common
${CMAKE_SOURCE_DIR}/src/shared/Database ${CMAKE_SOURCE_DIR}/src/shared/Database
${CMAKE_SOURCE_DIR}/src/shared/DataStores ${CMAKE_SOURCE_DIR}/src/shared/DataStores

View File

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

View File

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

View File

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

View File

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