aboutsummaryrefslogtreecommitdiff
path: root/src/server/authserver
diff options
context:
space:
mode:
authorTartalo <none@none>2010-06-08 01:20:06 +0200
committerTartalo <none@none>2010-06-08 01:20:06 +0200
commita5f4e3de948f388505b7a6d1baf107ceacfd718b (patch)
tree45a9704d7fbe5f0fc3e891b5601ff5602e77f86e /src/server/authserver
parent498f62f4cc0c5f8464a94492a26f6d17d6609b58 (diff)
more cmake fixes. comment collision compilation until fixed
--HG-- branch : trunk
Diffstat (limited to 'src/server/authserver')
-rw-r--r--src/server/authserver/CMakeLists.txt13
-rw-r--r--src/server/authserver/Main.cpp2
-rw-r--r--src/server/authserver/Server/AuthSocket.cpp4
-rw-r--r--src/server/authserver/Server/AuthSocket.h2
4 files changed, 13 insertions, 8 deletions
diff --git a/src/server/authserver/CMakeLists.txt b/src/server/authserver/CMakeLists.txt
index 496f1ff689e..98142e88729 100644
--- a/src/server/authserver/CMakeLists.txt
+++ b/src/server/authserver/CMakeLists.txt
@@ -18,7 +18,15 @@ include_directories(
${CMAKE_BINARY_DIR}
${CMAKE_SOURCE_DIR}/src/server/shared
${CMAKE_SOURCE_DIR}/src/server/shared/Database
- ${CMAKE_SOURCE_DIR}/src/server/framework
+ ${CMAKE_SOURCE_DIR}/src/server/shared/Packets
+ ${CMAKE_SOURCE_DIR}/src/server/shared/Cryptography
+ ${CMAKE_SOURCE_DIR}/src/server/shared/Cryptography/Authentication
+ ${CMAKE_SOURCE_DIR}/src/server/shared/Logging
+ ${CMAKE_SOURCE_DIR}/src/server/shared/Utilities
+ ${CMAKE_SOURCE_DIR}/src/server/authserver
+ ${CMAKE_SOURCE_DIR}/src/server/authserver/Authentication
+ ${CMAKE_SOURCE_DIR}/src/server/authserver/Realms
+ ${CMAKE_SOURCE_DIR}/src/server/authserver/Server
${MYSQL_INCLUDE_DIR}
)
@@ -41,12 +49,9 @@ SET_TARGET_PROPERTIES(trinity-realm PROPERTIES LINK_FLAGS "${trinity-realm_LINK_
target_link_libraries(
trinity-realm
shared
-trinityframework
-trinitysockets
trinitydatabase
trinityauth
trinityconfig
-zlib
${SSLLIB}
${MYSQL_LIBRARIES}
${OSX_LIBS}
diff --git a/src/server/authserver/Main.cpp b/src/server/authserver/Main.cpp
index 09bae4908e0..4d5362608a7 100644
--- a/src/server/authserver/Main.cpp
+++ b/src/server/authserver/Main.cpp
@@ -25,7 +25,7 @@
#include "Common.h"
#include "Database/DatabaseEnv.h"
-#include "Config/ConfigEnv.h"
+#include "Configuration/ConfigEnv.h"
#include "Log.h"
#include "SystemConfig.h"
#include "Util.h"
diff --git a/src/server/authserver/Server/AuthSocket.cpp b/src/server/authserver/Server/AuthSocket.cpp
index cc293097977..c33f84a9669 100644
--- a/src/server/authserver/Server/AuthSocket.cpp
+++ b/src/server/authserver/Server/AuthSocket.cpp
@@ -25,13 +25,13 @@
#include "Common.h"
#include "Database/DatabaseEnv.h"
#include "ByteBuffer.h"
-#include "Config/ConfigEnv.h"
+#include "Configuration/ConfigEnv.h"
#include "Log.h"
#include "RealmList.h"
#include "AuthSocket.h"
#include "AuthCodes.h"
#include <openssl/md5.h>
-#include "Auth/Sha1.h"
+#include "SHA1.h"
//#include "Util.h" -- for commented utf8ToUpperOnlyLatin
extern DatabaseType LoginDatabase;
diff --git a/src/server/authserver/Server/AuthSocket.h b/src/server/authserver/Server/AuthSocket.h
index bfd0fa4fdca..0ad40b6930b 100644
--- a/src/server/authserver/Server/AuthSocket.h
+++ b/src/server/authserver/Server/AuthSocket.h
@@ -26,7 +26,7 @@
#define _AUTHSOCKET_H
#include "Common.h"
-#include "Auth/BigNumber.h"
+#include "BigNumber.h"
#include "RealmSocket.h"