From 332b0f3c8efb39d2532b965a4aed266a33f267ef Mon Sep 17 00:00:00 2001 From: click Date: Tue, 8 Jun 2010 08:59:38 +0200 Subject: Properly build and link core (yay!) - Not done yet : Sorting out the PCH-system on *nix - Not done yet : Sorting out scriptcompilation (still broken) --HG-- branch : trunk --- CMakeLists.txt | 2 +- src/server/game/CMakeLists.txt | 2 ++ src/server/shared/CMakeLists.txt | 6 ++++-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e7384b93cae..8f89ea5cc40 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -33,7 +33,7 @@ option(CENTOS "CENTOS" 0) option(DO_CLI "With CLI" 1) option(DO_DEBUG "Debug mode" 0) option(DO_MYSQL "With MySQL support" 1) -option(DO_PCH "Use precompiled headers" 1) +option(DO_PCH "Use precompiled headers" 0) option(DO_RA "With RA" 0) option(DO_SCRIPTS "With trinityscripts" 1) option(DO_SQL "Copy SQL files" 0) diff --git a/src/server/game/CMakeLists.txt b/src/server/game/CMakeLists.txt index bf7b5d9f1ea..15d7da2b6d8 100644 --- a/src/server/game/CMakeLists.txt +++ b/src/server/game/CMakeLists.txt @@ -34,6 +34,8 @@ SET(game_STAT_SRCS AI/CreatureAIRegistry.h AI/CreatureAISelector.cpp AI/CreatureAISelector.h + AI/CreatureAI.cpp + AI/CreatureAI.h AuctionHouse/AuctionHouseMgr.cpp AuctionHouse/AuctionHouseMgr.h AuctionHouse/AuctionHouseBot/AuctionHouseBot.cpp diff --git a/src/server/shared/CMakeLists.txt b/src/server/shared/CMakeLists.txt index 6c796d60f11..010c47fd706 100644 --- a/src/server/shared/CMakeLists.txt +++ b/src/server/shared/CMakeLists.txt @@ -15,7 +15,9 @@ SET(shared_STAT_SRCS Utilities/SignalHandler.h Utilities/Timer.h Utilities/Util.cpp - Utilities/Util.h + Utilities/Util.h + Utilities/EventProcessor.cpp + Utilities/EventProcessor.h Common.cpp Common.h SystemConfig.h @@ -127,4 +129,4 @@ include_directories( ${MYSQL_INCLUDE_DIR} ) -add_library(trinitydatabase STATIC ${trinitydatabase_STAT_SRCS}) \ No newline at end of file +add_library(trinitydatabase STATIC ${trinitydatabase_STAT_SRCS}) -- cgit v1.2.3