fixed cmake
This commit is contained in:
@@ -28,7 +28,7 @@ set(CMAKE_INSTALL_RPATH_USE_LINK_PATH 1)
|
|||||||
set(AC_PATH_ROOT "${CMAKE_SOURCE_DIR}")
|
set(AC_PATH_ROOT "${CMAKE_SOURCE_DIR}")
|
||||||
|
|
||||||
# set macro-directory
|
# set macro-directory
|
||||||
set(CMAKE_MODULE_PATH "${AC_PATH_ROOT}/src/core/cmake/macros")
|
set(CMAKE_MODULE_PATH "${AC_PATH_ROOT}/src/cmake/macros")
|
||||||
|
|
||||||
include(CheckCXXSourceRuns)
|
include(CheckCXXSourceRuns)
|
||||||
include(CheckIncludeFiles)
|
include(CheckIncludeFiles)
|
||||||
@@ -100,9 +100,7 @@ include(src/cmake/showoptions.cmake)
|
|||||||
add_subdirectory(deps)
|
add_subdirectory(deps)
|
||||||
|
|
||||||
if( SERVERS OR TOOLS)
|
if( SERVERS OR TOOLS)
|
||||||
add_subdirectory(src/core)
|
add_subdirectory(src/common)
|
||||||
add_subdirectory(src/libraries/collision)
|
|
||||||
add_subdirectory(src/framework)
|
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if( TOOLS )
|
if( TOOLS )
|
||||||
|
|||||||
@@ -19,12 +19,5 @@ endif()
|
|||||||
add_subdirectory(genrev)
|
add_subdirectory(genrev)
|
||||||
|
|
||||||
if( SERVERS )
|
if( SERVERS )
|
||||||
set(sources_windows_Debugging
|
add_subdirectory(server)
|
||||||
${CMAKE_SOURCE_DIR}/src/core/Debugging/WheatyExceptionReport.cpp
|
|
||||||
${CMAKE_SOURCE_DIR}/src/core/Debugging/WheatyExceptionReport.h
|
|
||||||
)
|
|
||||||
add_subdirectory(game)
|
|
||||||
add_subdirectory(authserver)
|
|
||||||
add_subdirectory(scripts)
|
|
||||||
add_subdirectory(worldserver)
|
|
||||||
endif()
|
endif()
|
||||||
|
|||||||
@@ -7,12 +7,12 @@ else()
|
|||||||
MESSAGE(STATUS "Detected 32-bit platform")
|
MESSAGE(STATUS "Detected 32-bit platform")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
include("${CMAKE_SOURCE_DIR}/src/core/cmake/platform/settings.cmake")
|
include("${CMAKE_SOURCE_DIR}/src/cmake/platform/settings.cmake")
|
||||||
|
|
||||||
if(WIN32)
|
if(WIN32)
|
||||||
include("${CMAKE_SOURCE_DIR}/src/core/cmake/platform/win/settings.cmake")
|
include("${CMAKE_SOURCE_DIR}/src/cmake/platform/win/settings.cmake")
|
||||||
elseif(UNIX)
|
elseif(UNIX)
|
||||||
include("${CMAKE_SOURCE_DIR}/src/core/cmake/platform/unix/settings.cmake")
|
include("${CMAKE_SOURCE_DIR}/src/cmake/platform/unix/settings.cmake")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
include("${CMAKE_SOURCE_DIR}/src/core/cmake/platform/after_platform.cmake")
|
include("${CMAKE_SOURCE_DIR}/src/cmake/platform/after_platform.cmake")
|
||||||
@@ -7,7 +7,7 @@
|
|||||||
# This program is distributed in the hope that it will be useful, but
|
# This program is distributed in the hope that it will be useful, but
|
||||||
# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
|
# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
|
||||||
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||||
include(${CMAKE_SOURCE_DIR}/src/core/cmake/macros/EnsureVersion.cmake)
|
include(${CMAKE_SOURCE_DIR}/src/cmake/macros/EnsureVersion.cmake)
|
||||||
|
|
||||||
set(_REQUIRED_GIT_VERSION "1.7")
|
set(_REQUIRED_GIT_VERSION "1.7")
|
||||||
|
|
||||||
@@ -20,7 +20,7 @@ endif()
|
|||||||
|
|
||||||
# configure uninstaller
|
# configure uninstaller
|
||||||
configure_file(
|
configure_file(
|
||||||
"${CMAKE_SOURCE_DIR}/src/core/cmake/platform/cmake_uninstall.in.cmake"
|
"${CMAKE_SOURCE_DIR}/src/cmake/platform/cmake_uninstall.in.cmake"
|
||||||
"${CMAKE_BINARY_DIR}/cmake_uninstall.cmake"
|
"${CMAKE_BINARY_DIR}/cmake_uninstall.cmake"
|
||||||
@ONLY
|
@ONLY
|
||||||
)
|
)
|
||||||
@@ -34,11 +34,11 @@ message(STATUS "UNIX: Created uninstall target")
|
|||||||
|
|
||||||
message(STATUS "UNIX: Detected compiler: ${CMAKE_C_COMPILER}")
|
message(STATUS "UNIX: Detected compiler: ${CMAKE_C_COMPILER}")
|
||||||
if(CMAKE_C_COMPILER MATCHES "gcc" OR CMAKE_C_COMPILER_ID STREQUAL "GNU")
|
if(CMAKE_C_COMPILER MATCHES "gcc" OR CMAKE_C_COMPILER_ID STREQUAL "GNU")
|
||||||
include(${CMAKE_SOURCE_DIR}/src/core/cmake/compiler/gcc/settings.cmake)
|
include(${CMAKE_SOURCE_DIR}/src/cmake/compiler/gcc/settings.cmake)
|
||||||
elseif(CMAKE_C_COMPILER MATCHES "icc")
|
elseif(CMAKE_C_COMPILER MATCHES "icc")
|
||||||
include(${CMAKE_SOURCE_DIR}/src/core/cmake/compiler/icc/settings.cmake)
|
include(${CMAKE_SOURCE_DIR}/src/cmake/compiler/icc/settings.cmake)
|
||||||
elseif(CMAKE_C_COMPILER MATCHES "clang" OR CMAKE_C_COMPILER_ID MATCHES "Clang")
|
elseif(CMAKE_C_COMPILER MATCHES "clang" OR CMAKE_C_COMPILER_ID MATCHES "Clang")
|
||||||
include(${CMAKE_SOURCE_DIR}/src/core/cmake/compiler/clang/settings.cmake)
|
include(${CMAKE_SOURCE_DIR}/src/cmake/compiler/clang/settings.cmake)
|
||||||
else()
|
else()
|
||||||
add_definitions(-D_BUILD_DIRECTIVE='"${CMAKE_BUILD_TYPE}"')
|
add_definitions(-D_BUILD_DIRECTIVE='"${CMAKE_BUILD_TYPE}"')
|
||||||
endif()
|
endif()
|
||||||
@@ -3,6 +3,7 @@ option(USE_MYSQL_SOURCES "Use included MySQL-sources to build libraries" 0)
|
|||||||
|
|
||||||
# Package overloads
|
# Package overloads
|
||||||
set(ACE_INCLUDE_DIR ${CMAKE_SOURCE_DIR}/deps/acelite)
|
set(ACE_INCLUDE_DIR ${CMAKE_SOURCE_DIR}/deps/acelite)
|
||||||
|
set(ACE_DIR ${ACE_INCLUDE_DIR})
|
||||||
set(ACE_LIBRARY "ace")
|
set(ACE_LIBRARY "ace")
|
||||||
set(BZIP2_LIBRARIES "bzip2")
|
set(BZIP2_LIBRARIES "bzip2")
|
||||||
set(ZLIB_LIBRARIES "zlib")
|
set(ZLIB_LIBRARIES "zlib")
|
||||||
@@ -26,7 +27,7 @@ endif()
|
|||||||
#endif()
|
#endif()
|
||||||
|
|
||||||
if ( MSVC )
|
if ( MSVC )
|
||||||
include(${CMAKE_SOURCE_DIR}/src/core/cmake/compiler/msvc/settings.cmake)
|
include(${CMAKE_SOURCE_DIR}/src/cmake/compiler/msvc/settings.cmake)
|
||||||
elseif ( MINGW )
|
elseif ( MINGW )
|
||||||
include(${CMAKE_SOURCE_DIR}/src/core/cmake/compiler/mingw/settings.cmake)
|
include(${CMAKE_SOURCE_DIR}/src/cmake/compiler/mingw/settings.cmake)
|
||||||
endif()
|
endif()
|
||||||
@@ -12,6 +12,7 @@ if( USE_COREPCH )
|
|||||||
include_directories(${CMAKE_CURRENT_BINARY_DIR})
|
include_directories(${CMAKE_CURRENT_BINARY_DIR})
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
file(GLOB_RECURSE sources_Collision Collision/*.cpp Collision/*.h)
|
||||||
file(GLOB_RECURSE sources_Configuration Configuration/*.cpp Configuration/*.h)
|
file(GLOB_RECURSE sources_Configuration Configuration/*.cpp Configuration/*.h)
|
||||||
file(GLOB_RECURSE sources_Cryptography Cryptography/*.cpp Cryptography/*.h)
|
file(GLOB_RECURSE sources_Cryptography Cryptography/*.cpp Cryptography/*.h)
|
||||||
file(GLOB_RECURSE sources_Database Database/*.cpp Database/*.h)
|
file(GLOB_RECURSE sources_Database Database/*.cpp Database/*.h)
|
||||||
@@ -40,6 +41,7 @@ endif()
|
|||||||
|
|
||||||
set(shared_STAT_SRCS
|
set(shared_STAT_SRCS
|
||||||
${shared_STAT_SRCS}
|
${shared_STAT_SRCS}
|
||||||
|
${sources_Collision}
|
||||||
${sources_Configuration}
|
${sources_Configuration}
|
||||||
${sources_Cryptography}
|
${sources_Cryptography}
|
||||||
${sources_Database}
|
${sources_Database}
|
||||||
@@ -62,6 +64,7 @@ include_directories(
|
|||||||
${CMAKE_SOURCE_DIR}/deps/utf8cpp
|
${CMAKE_SOURCE_DIR}/deps/utf8cpp
|
||||||
${CMAKE_SOURCE_DIR}/src
|
${CMAKE_SOURCE_DIR}/src
|
||||||
${CMAKE_CURRENT_SOURCE_DIR}
|
${CMAKE_CURRENT_SOURCE_DIR}
|
||||||
|
${CMAKE_CURRENT_SOURCE_DIR}/Collision
|
||||||
${CMAKE_CURRENT_SOURCE_DIR}/Configuration
|
${CMAKE_CURRENT_SOURCE_DIR}/Configuration
|
||||||
${CMAKE_CURRENT_SOURCE_DIR}/Cryptography
|
${CMAKE_CURRENT_SOURCE_DIR}/Cryptography
|
||||||
${CMAKE_CURRENT_SOURCE_DIR}/Database
|
${CMAKE_CURRENT_SOURCE_DIR}/Database
|
||||||
@@ -72,7 +75,7 @@ include_directories(
|
|||||||
${CMAKE_CURRENT_SOURCE_DIR}/Packets
|
${CMAKE_CURRENT_SOURCE_DIR}/Packets
|
||||||
${CMAKE_CURRENT_SOURCE_DIR}/Threading
|
${CMAKE_CURRENT_SOURCE_DIR}/Threading
|
||||||
${CMAKE_CURRENT_SOURCE_DIR}/Utilities
|
${CMAKE_CURRENT_SOURCE_DIR}/Utilities
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Entities/Object
|
${CMAKE_SOURCE_DIR}/src/server/game/Entities/Object
|
||||||
${ACE_INCLUDE_DIR}
|
${ACE_INCLUDE_DIR}
|
||||||
${MYSQL_INCLUDE_DIR}
|
${MYSQL_INCLUDE_DIR}
|
||||||
${OPENSSL_INCLUDE_DIR}
|
${OPENSSL_INCLUDE_DIR}
|
||||||
|
|||||||
@@ -1,93 +0,0 @@
|
|||||||
# Copyright (C)
|
|
||||||
#
|
|
||||||
# This file is free software; as a special exception the author gives
|
|
||||||
# unlimited permission to copy and/or distribute it, with or without
|
|
||||||
# modifications, as long as this notice is preserved.
|
|
||||||
#
|
|
||||||
# This program is distributed in the hope that it will be useful, but
|
|
||||||
# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
|
|
||||||
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
||||||
|
|
||||||
if( USE_COREPCH )
|
|
||||||
include_directories(${CMAKE_CURRENT_BINARY_DIR})
|
|
||||||
endif()
|
|
||||||
|
|
||||||
file(GLOB_RECURSE sources_Management Management/*.cpp Management/*.h)
|
|
||||||
file(GLOB_RECURSE sources_Maps Maps/*.cpp Maps/*.h)
|
|
||||||
file(GLOB_RECURSE sources_Models Models/*.cpp Models/*.h)
|
|
||||||
file(GLOB sources_localdir *.cpp *.h)
|
|
||||||
|
|
||||||
if (USE_COREPCH)
|
|
||||||
set(collision_STAT_PCH_HDR PrecompiledHeaders/collisionPCH.h)
|
|
||||||
set(collision_STAT_PCH_SRC PrecompiledHeaders/collisionPCH.cpp)
|
|
||||||
endif ()
|
|
||||||
|
|
||||||
set(collision_STAT_SRCS
|
|
||||||
${collision_STAT_SRCS}
|
|
||||||
${sources_Management}
|
|
||||||
${sources_Maps}
|
|
||||||
${sources_Models}
|
|
||||||
${sources_localdir}
|
|
||||||
)
|
|
||||||
|
|
||||||
include_directories(
|
|
||||||
${CMAKE_BINARY_DIR}
|
|
||||||
${CMAKE_SOURCE_DIR}/deps/g3dlite/include
|
|
||||||
${CMAKE_SOURCE_DIR}/deps/recastnavigation/Detour
|
|
||||||
${CMAKE_SOURCE_DIR}/src/core/
|
|
||||||
${CMAKE_SOURCE_DIR}/src/core/Configuration
|
|
||||||
${CMAKE_SOURCE_DIR}/src/core/Debugging
|
|
||||||
${CMAKE_SOURCE_DIR}/src/core/Database
|
|
||||||
${CMAKE_SOURCE_DIR}/src/core/Debugging
|
|
||||||
${CMAKE_SOURCE_DIR}/src/core/Dynamic
|
|
||||||
${CMAKE_SOURCE_DIR}/src/core/Dynamic/LinkedReference
|
|
||||||
${CMAKE_SOURCE_DIR}/src/core/Logging
|
|
||||||
${CMAKE_SOURCE_DIR}/src/core/Threading
|
|
||||||
${CMAKE_SOURCE_DIR}/src/core/Packets
|
|
||||||
${CMAKE_SOURCE_DIR}/src/core/Utilities
|
|
||||||
${CMAKE_SOURCE_DIR}/src/core/DataStores
|
|
||||||
${CMAKE_SOURCE_DIR}/src/framework/Addons
|
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Conditions
|
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Entities/Item
|
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Entities/GameObject
|
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Entities/Creature
|
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Entities/Object
|
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Entities/Object/Updates
|
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Entities/Unit
|
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Combat
|
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Loot
|
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Miscellaneous
|
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Grids
|
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Grids/Cells
|
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Grids/Notifiers
|
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Maps
|
|
||||||
${CMAKE_SOURCE_DIR}/src/game/DataStores
|
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Movement/Waypoints
|
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Movement/Spline
|
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Movement
|
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Server
|
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Server/Protocol
|
|
||||||
${CMAKE_SOURCE_DIR}/src/game/World
|
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Spells
|
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Spells/Auras
|
|
||||||
${CMAKE_CURRENT_SOURCE_DIR}
|
|
||||||
${CMAKE_CURRENT_SOURCE_DIR}/Management
|
|
||||||
${CMAKE_CURRENT_SOURCE_DIR}/Maps
|
|
||||||
${CMAKE_CURRENT_SOURCE_DIR}/Models
|
|
||||||
${ACE_INCLUDE_DIR}
|
|
||||||
${MYSQL_INCLUDE_DIR}
|
|
||||||
)
|
|
||||||
|
|
||||||
add_library(collision STATIC
|
|
||||||
${collision_STAT_SRCS}
|
|
||||||
${collision_STAT_PCH_SRC}
|
|
||||||
)
|
|
||||||
|
|
||||||
target_link_libraries(collision
|
|
||||||
shared
|
|
||||||
)
|
|
||||||
|
|
||||||
# Generate precompiled header
|
|
||||||
if (USE_COREPCH)
|
|
||||||
add_cxx_pch(collision ${collision_STAT_PCH_HDR} ${collision_STAT_PCH_SRC})
|
|
||||||
endif ()
|
|
||||||
21
src/server/CMakeLists.txt
Normal file
21
src/server/CMakeLists.txt
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
# Copyright (C)
|
||||||
|
#
|
||||||
|
# This file is free software; as a special exception the author gives
|
||||||
|
# unlimited permission to copy and/or distribute it, with or without
|
||||||
|
# modifications, as long as this notice is preserved.
|
||||||
|
#
|
||||||
|
# This program is distributed in the hope that it will be useful, but
|
||||||
|
# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
|
||||||
|
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||||
|
|
||||||
|
if( SERVERS )
|
||||||
|
set(sources_windows_Debugging
|
||||||
|
${CMAKE_SOURCE_DIR}/src/common/Debugging/WheatyExceptionReport.cpp
|
||||||
|
${CMAKE_SOURCE_DIR}/src/common/Debugging/WheatyExceptionReport.h
|
||||||
|
)
|
||||||
|
|
||||||
|
add_subdirectory(game)
|
||||||
|
add_subdirectory(authserver)
|
||||||
|
add_subdirectory(scripts)
|
||||||
|
add_subdirectory(worldserver)
|
||||||
|
endif()
|
||||||
@@ -43,15 +43,15 @@ endif()
|
|||||||
|
|
||||||
include_directories(
|
include_directories(
|
||||||
${CMAKE_BINARY_DIR}
|
${CMAKE_BINARY_DIR}
|
||||||
${CMAKE_SOURCE_DIR}/src/core
|
${CMAKE_SOURCE_DIR}/src/common
|
||||||
${CMAKE_SOURCE_DIR}/src/core/Database
|
${CMAKE_SOURCE_DIR}/src/common/Database
|
||||||
${CMAKE_SOURCE_DIR}/src/core/Debugging
|
${CMAKE_SOURCE_DIR}/src/common/Debugging
|
||||||
${CMAKE_SOURCE_DIR}/src/core/Packets
|
${CMAKE_SOURCE_DIR}/src/common/Packets
|
||||||
${CMAKE_SOURCE_DIR}/src/core/Cryptography
|
${CMAKE_SOURCE_DIR}/src/common/Cryptography
|
||||||
${CMAKE_SOURCE_DIR}/src/core/Cryptography/Authentication
|
${CMAKE_SOURCE_DIR}/src/common/Cryptography/Authentication
|
||||||
${CMAKE_SOURCE_DIR}/src/core/Logging
|
${CMAKE_SOURCE_DIR}/src/common/Logging
|
||||||
${CMAKE_SOURCE_DIR}/src/core/Threading
|
${CMAKE_SOURCE_DIR}/src/common/Threading
|
||||||
${CMAKE_SOURCE_DIR}/src/core/Utilities
|
${CMAKE_SOURCE_DIR}/src/common/Utilities
|
||||||
${CMAKE_CURRENT_SOURCE_DIR}
|
${CMAKE_CURRENT_SOURCE_DIR}
|
||||||
${CMAKE_CURRENT_SOURCE_DIR}/Authentication
|
${CMAKE_CURRENT_SOURCE_DIR}/Authentication
|
||||||
${CMAKE_CURRENT_SOURCE_DIR}/Realms
|
${CMAKE_CURRENT_SOURCE_DIR}/Realms
|
||||||
|
|||||||
@@ -116,24 +116,24 @@ include_directories(
|
|||||||
${CMAKE_SOURCE_DIR}/deps/g3dlite/include
|
${CMAKE_SOURCE_DIR}/deps/g3dlite/include
|
||||||
${CMAKE_SOURCE_DIR}/deps/SFMT
|
${CMAKE_SOURCE_DIR}/deps/SFMT
|
||||||
${CMAKE_SOURCE_DIR}/deps/zlib
|
${CMAKE_SOURCE_DIR}/deps/zlib
|
||||||
${CMAKE_SOURCE_DIR}/src/libraries/collision/
|
${CMAKE_SOURCE_DIR}/src/common/Collision/
|
||||||
${CMAKE_SOURCE_DIR}/src/libraries/collision/Management
|
${CMAKE_SOURCE_DIR}/src/common/Collision/Management
|
||||||
${CMAKE_SOURCE_DIR}/src/libraries/collision/Models
|
${CMAKE_SOURCE_DIR}/src/common/Collision/Models
|
||||||
${CMAKE_SOURCE_DIR}/src/libraries/collision/Maps
|
${CMAKE_SOURCE_DIR}/src/common/Collision/Maps
|
||||||
${CMAKE_SOURCE_DIR}/src/core
|
${CMAKE_SOURCE_DIR}/src/common
|
||||||
${CMAKE_SOURCE_DIR}/src/core/Configuration
|
${CMAKE_SOURCE_DIR}/src/common/Configuration
|
||||||
${CMAKE_SOURCE_DIR}/src/core/Cryptography
|
${CMAKE_SOURCE_DIR}/src/common/Cryptography
|
||||||
${CMAKE_SOURCE_DIR}/src/core/Cryptography/Authentication
|
${CMAKE_SOURCE_DIR}/src/common/Cryptography/Authentication
|
||||||
${CMAKE_SOURCE_DIR}/src/core/Database
|
${CMAKE_SOURCE_DIR}/src/common/Database
|
||||||
${CMAKE_SOURCE_DIR}/src/core/DataStores
|
${CMAKE_SOURCE_DIR}/src/common/DataStores
|
||||||
${CMAKE_SOURCE_DIR}/src/core/Debugging
|
${CMAKE_SOURCE_DIR}/src/common/Debugging
|
||||||
${CMAKE_SOURCE_DIR}/src/core/Dynamic/LinkedReference
|
${CMAKE_SOURCE_DIR}/src/common/Dynamic/LinkedReference
|
||||||
${CMAKE_SOURCE_DIR}/src/core/Dynamic
|
${CMAKE_SOURCE_DIR}/src/common/Dynamic
|
||||||
${CMAKE_SOURCE_DIR}/src/core/Logging
|
${CMAKE_SOURCE_DIR}/src/common/Logging
|
||||||
${CMAKE_SOURCE_DIR}/src/core/Packets
|
${CMAKE_SOURCE_DIR}/src/common/Packets
|
||||||
${CMAKE_SOURCE_DIR}/src/core/Threading
|
${CMAKE_SOURCE_DIR}/src/common/Threading
|
||||||
${CMAKE_SOURCE_DIR}/src/core/Utilities
|
${CMAKE_SOURCE_DIR}/src/common/Utilities
|
||||||
${CMAKE_SOURCE_DIR}/src/framework/Addons
|
${CMAKE_SOURCE_DIR}/src/server/game/Addons
|
||||||
${CMAKE_CURRENT_SOURCE_DIR}
|
${CMAKE_CURRENT_SOURCE_DIR}
|
||||||
${CMAKE_CURRENT_SOURCE_DIR}/Accounts
|
${CMAKE_CURRENT_SOURCE_DIR}/Accounts
|
||||||
${CMAKE_CURRENT_SOURCE_DIR}/Achievements
|
${CMAKE_CURRENT_SOURCE_DIR}/Achievements
|
||||||
@@ -206,8 +206,8 @@ include_directories(
|
|||||||
${CMAKE_CURRENT_SOURCE_DIR}/World
|
${CMAKE_CURRENT_SOURCE_DIR}/World
|
||||||
${CMAKE_CURRENT_SOURCE_DIR}/ArenaSpectator
|
${CMAKE_CURRENT_SOURCE_DIR}/ArenaSpectator
|
||||||
${CMAKE_CURRENT_SOURCE_DIR}/Misc
|
${CMAKE_CURRENT_SOURCE_DIR}/Misc
|
||||||
${CMAKE_SOURCE_DIR}/src/scripts/
|
${CMAKE_SOURCE_DIR}/src/server/scripts/
|
||||||
${CMAKE_SOURCE_DIR}/src/scripts/PrecompiledHeaders
|
${CMAKE_SOURCE_DIR}/src/server/scripts/PrecompiledHeaders
|
||||||
${ACE_INCLUDE_DIR}
|
${ACE_INCLUDE_DIR}
|
||||||
${MYSQL_INCLUDE_DIR}
|
${MYSQL_INCLUDE_DIR}
|
||||||
${OPENSSL_INCLUDE_DIR}
|
${OPENSSL_INCLUDE_DIR}
|
||||||
|
|||||||
@@ -83,97 +83,97 @@ include_directories(
|
|||||||
${CMAKE_SOURCE_DIR}/deps/g3dlite/include
|
${CMAKE_SOURCE_DIR}/deps/g3dlite/include
|
||||||
${CMAKE_SOURCE_DIR}/deps/SFMT
|
${CMAKE_SOURCE_DIR}/deps/SFMT
|
||||||
${CMAKE_SOURCE_DIR}/deps/zlib
|
${CMAKE_SOURCE_DIR}/deps/zlib
|
||||||
${CMAKE_SOURCE_DIR}/src/core
|
${CMAKE_SOURCE_DIR}/src/common
|
||||||
${CMAKE_SOURCE_DIR}/src/core/Configuration
|
${CMAKE_SOURCE_DIR}/src/common/Configuration
|
||||||
${CMAKE_SOURCE_DIR}/src/core/Cryptography
|
${CMAKE_SOURCE_DIR}/src/common/Cryptography
|
||||||
${CMAKE_SOURCE_DIR}/src/core/Database
|
${CMAKE_SOURCE_DIR}/src/common/Database
|
||||||
${CMAKE_SOURCE_DIR}/src/core/DataStores
|
${CMAKE_SOURCE_DIR}/src/common/DataStores
|
||||||
${CMAKE_SOURCE_DIR}/src/core/Debugging
|
${CMAKE_SOURCE_DIR}/src/common/Debugging
|
||||||
${CMAKE_SOURCE_DIR}/src/core/Dynamic/LinkedReference
|
${CMAKE_SOURCE_DIR}/src/common/Dynamic/LinkedReference
|
||||||
${CMAKE_SOURCE_DIR}/src/core/Dynamic
|
${CMAKE_SOURCE_DIR}/src/common/Dynamic
|
||||||
${CMAKE_SOURCE_DIR}/src/core/Logging
|
${CMAKE_SOURCE_DIR}/src/common/Logging
|
||||||
${CMAKE_SOURCE_DIR}/src/core/Packets
|
${CMAKE_SOURCE_DIR}/src/common/Packets
|
||||||
${CMAKE_SOURCE_DIR}/src/core/Threading
|
${CMAKE_SOURCE_DIR}/src/common/Threading
|
||||||
${CMAKE_SOURCE_DIR}/src/core/Utilities
|
${CMAKE_SOURCE_DIR}/src/common/Utilities
|
||||||
${CMAKE_SOURCE_DIR}/src/libraries/collision/
|
${CMAKE_SOURCE_DIR}/src/common/Collision/
|
||||||
${CMAKE_SOURCE_DIR}/src/libraries/collision/Management
|
${CMAKE_SOURCE_DIR}/src/common/Collision/Management
|
||||||
${CMAKE_SOURCE_DIR}/src/libraries/collision/Models
|
${CMAKE_SOURCE_DIR}/src/common/Collision/Models
|
||||||
${CMAKE_SOURCE_DIR}/src/core
|
${CMAKE_SOURCE_DIR}/src/common
|
||||||
${CMAKE_SOURCE_DIR}/src/core/Database
|
${CMAKE_SOURCE_DIR}/src/common/Database
|
||||||
${CMAKE_SOURCE_DIR}/src/framework/Addons
|
${CMAKE_SOURCE_DIR}/src/server/game/Addons
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Accounts
|
${CMAKE_SOURCE_DIR}/src/server/game/Accounts
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Achievements
|
${CMAKE_SOURCE_DIR}/src/server/game/Achievements
|
||||||
${CMAKE_SOURCE_DIR}/src/game/AI
|
${CMAKE_SOURCE_DIR}/src/server/game/AI
|
||||||
${CMAKE_SOURCE_DIR}/src/game/AI/CoreAI
|
${CMAKE_SOURCE_DIR}/src/server/game/AI/CoreAI
|
||||||
${CMAKE_SOURCE_DIR}/src/game/AI/ScriptedAI
|
${CMAKE_SOURCE_DIR}/src/server/game/AI/ScriptedAI
|
||||||
${CMAKE_SOURCE_DIR}/src/game/AI/SmartScripts
|
${CMAKE_SOURCE_DIR}/src/server/game/AI/SmartScripts
|
||||||
${CMAKE_SOURCE_DIR}/src/game/AuctionHouse
|
${CMAKE_SOURCE_DIR}/src/server/game/AuctionHouse
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Battlefield
|
${CMAKE_SOURCE_DIR}/src/server/game/Battlefield
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Battlefield/Zones
|
${CMAKE_SOURCE_DIR}/src/server/game/Battlefield/Zones
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Battlegrounds
|
${CMAKE_SOURCE_DIR}/src/server/game/Battlegrounds
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Battlegrounds/Zones
|
${CMAKE_SOURCE_DIR}/src/server/game/Battlegrounds/Zones
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Calendar
|
${CMAKE_SOURCE_DIR}/src/server/game/Calendar
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Chat
|
${CMAKE_SOURCE_DIR}/src/server/game/Chat
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Chat/Channels
|
${CMAKE_SOURCE_DIR}/src/server/game/Chat/Channels
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Conditions
|
${CMAKE_SOURCE_DIR}/src/server/game/Conditions
|
||||||
${CMAKE_SOURCE_DIR}/src/core/Configuration
|
${CMAKE_SOURCE_DIR}/src/common/Configuration
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Combat
|
${CMAKE_SOURCE_DIR}/src/server/game/Combat
|
||||||
${CMAKE_SOURCE_DIR}/src/game/DataStores
|
${CMAKE_SOURCE_DIR}/src/server/game/DataStores
|
||||||
${CMAKE_SOURCE_DIR}/src/game/DungeonFinding
|
${CMAKE_SOURCE_DIR}/src/server/game/DungeonFinding
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Entities/Corpse
|
${CMAKE_SOURCE_DIR}/src/server/game/Entities/Corpse
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Entities/Creature
|
${CMAKE_SOURCE_DIR}/src/server/game/Entities/Creature
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Entities/DynamicObject
|
${CMAKE_SOURCE_DIR}/src/server/game/Entities/DynamicObject
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Entities/Item
|
${CMAKE_SOURCE_DIR}/src/server/game/Entities/Item
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Entities/Item/Container
|
${CMAKE_SOURCE_DIR}/src/server/game/Entities/Item/Container
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Entities/GameObject
|
${CMAKE_SOURCE_DIR}/src/server/game/Entities/GameObject
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Entities/Object
|
${CMAKE_SOURCE_DIR}/src/server/game/Entities/Object
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Entities/Object/Updates
|
${CMAKE_SOURCE_DIR}/src/server/game/Entities/Object/Updates
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Entities/Pet
|
${CMAKE_SOURCE_DIR}/src/server/game/Entities/Pet
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Entities/Player
|
${CMAKE_SOURCE_DIR}/src/server/game/Entities/Player
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Entities/Totem
|
${CMAKE_SOURCE_DIR}/src/server/game/Entities/Totem
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Entities/Transport
|
${CMAKE_SOURCE_DIR}/src/server/game/Entities/Transport
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Entities/Unit
|
${CMAKE_SOURCE_DIR}/src/server/game/Entities/Unit
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Entities/Vehicle
|
${CMAKE_SOURCE_DIR}/src/server/game/Entities/Vehicle
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Events
|
${CMAKE_SOURCE_DIR}/src/server/game/Events
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Globals
|
${CMAKE_SOURCE_DIR}/src/server/game/Globals
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Grids
|
${CMAKE_SOURCE_DIR}/src/server/game/Grids
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Grids/Cells
|
${CMAKE_SOURCE_DIR}/src/server/game/Grids/Cells
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Grids/Notifiers
|
${CMAKE_SOURCE_DIR}/src/server/game/Grids/Notifiers
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Groups
|
${CMAKE_SOURCE_DIR}/src/server/game/Groups
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Guilds
|
${CMAKE_SOURCE_DIR}/src/server/game/Guilds
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Handlers
|
${CMAKE_SOURCE_DIR}/src/server/game/Handlers
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Instances
|
${CMAKE_SOURCE_DIR}/src/server/game/Instances
|
||||||
${CMAKE_SOURCE_DIR}/src/game/LookingForGroup
|
${CMAKE_SOURCE_DIR}/src/server/game/LookingForGroup
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Loot
|
${CMAKE_SOURCE_DIR}/src/server/game/Loot
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Mails
|
${CMAKE_SOURCE_DIR}/src/server/game/Mails
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Miscellaneous
|
${CMAKE_SOURCE_DIR}/src/server/game/Miscellaneous
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Maps
|
${CMAKE_SOURCE_DIR}/src/server/game/Maps
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Movement
|
${CMAKE_SOURCE_DIR}/src/server/game/Movement
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Movement/MovementGenerators
|
${CMAKE_SOURCE_DIR}/src/server/game/Movement/MovementGenerators
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Movement/Spline
|
${CMAKE_SOURCE_DIR}/src/server/game/Movement/Spline
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Movement/Waypoints
|
${CMAKE_SOURCE_DIR}/src/server/game/Movement/Waypoints
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Opcodes
|
${CMAKE_SOURCE_DIR}/src/server/game/Opcodes
|
||||||
${CMAKE_SOURCE_DIR}/src/game/OutdoorPvP
|
${CMAKE_SOURCE_DIR}/src/server/game/OutdoorPvP
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Petitions
|
${CMAKE_SOURCE_DIR}/src/server/game/Petitions
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Pools
|
${CMAKE_SOURCE_DIR}/src/server/game/Pools
|
||||||
${CMAKE_SOURCE_DIR}/src/game/PrecompiledHeaders
|
${CMAKE_SOURCE_DIR}/src/server/game/PrecompiledHeaders
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Quests
|
${CMAKE_SOURCE_DIR}/src/server/game/Quests
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Reputation
|
${CMAKE_SOURCE_DIR}/src/server/game/Reputation
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Scripting
|
${CMAKE_SOURCE_DIR}/src/server/game/Scripting
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Server
|
${CMAKE_SOURCE_DIR}/src/server/game/Server
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Server/Protocol
|
${CMAKE_SOURCE_DIR}/src/server/game/Server/Protocol
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Skills
|
${CMAKE_SOURCE_DIR}/src/server/game/Skills
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Spells
|
${CMAKE_SOURCE_DIR}/src/server/game/Spells
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Spells/Auras
|
${CMAKE_SOURCE_DIR}/src/server/game/Spells/Auras
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Texts
|
${CMAKE_SOURCE_DIR}/src/server/game/Texts
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Tickets
|
${CMAKE_SOURCE_DIR}/src/server/game/Tickets
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Tools
|
${CMAKE_SOURCE_DIR}/src/server/game/Tools
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Warden
|
${CMAKE_SOURCE_DIR}/src/server/game/Warden
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Warden/Modules
|
${CMAKE_SOURCE_DIR}/src/server/game/Warden/Modules
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Weather
|
${CMAKE_SOURCE_DIR}/src/server/game/Weather
|
||||||
${CMAKE_SOURCE_DIR}/src/game/World
|
${CMAKE_SOURCE_DIR}/src/server/game/World
|
||||||
${CMAKE_SOURCE_DIR}/src/game/ArenaSpectator
|
${CMAKE_SOURCE_DIR}/src/server/game/ArenaSpectator
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Misc
|
${CMAKE_SOURCE_DIR}/src/server/game/Misc
|
||||||
${CMAKE_CURRENT_SOURCE_DIR}
|
${CMAKE_CURRENT_SOURCE_DIR}
|
||||||
${CMAKE_CURRENT_SOURCE_DIR}/PrecompiledHeaders
|
${CMAKE_CURRENT_SOURCE_DIR}/PrecompiledHeaders
|
||||||
${ACE_INCLUDE_DIR}
|
${ACE_INCLUDE_DIR}
|
||||||
|
|||||||
@@ -48,96 +48,96 @@ include_directories(
|
|||||||
${CMAKE_SOURCE_DIR}/deps/gsoap
|
${CMAKE_SOURCE_DIR}/deps/gsoap
|
||||||
${CMAKE_SOURCE_DIR}/deps/sockets/include
|
${CMAKE_SOURCE_DIR}/deps/sockets/include
|
||||||
${CMAKE_SOURCE_DIR}/deps/SFMT
|
${CMAKE_SOURCE_DIR}/deps/SFMT
|
||||||
${CMAKE_SOURCE_DIR}/src/libraries/collision/
|
${CMAKE_SOURCE_DIR}/src/common/Collision/
|
||||||
${CMAKE_SOURCE_DIR}/src/libraries/collision/Management
|
${CMAKE_SOURCE_DIR}/src/common/Collision/Management
|
||||||
${CMAKE_SOURCE_DIR}/src/libraries/collision/Models
|
${CMAKE_SOURCE_DIR}/src/common/Collision/Models
|
||||||
${CMAKE_SOURCE_DIR}/src/core
|
${CMAKE_SOURCE_DIR}/src/common
|
||||||
${CMAKE_SOURCE_DIR}/src/core/Configuration
|
${CMAKE_SOURCE_DIR}/src/common/Configuration
|
||||||
${CMAKE_SOURCE_DIR}/src/core/Cryptography
|
${CMAKE_SOURCE_DIR}/src/common/Cryptography
|
||||||
${CMAKE_SOURCE_DIR}/src/core/Cryptography/Authentication
|
${CMAKE_SOURCE_DIR}/src/common/Cryptography/Authentication
|
||||||
${CMAKE_SOURCE_DIR}/src/core/Database
|
${CMAKE_SOURCE_DIR}/src/common/Database
|
||||||
${CMAKE_SOURCE_DIR}/src/core/DataStores
|
${CMAKE_SOURCE_DIR}/src/common/DataStores
|
||||||
${CMAKE_SOURCE_DIR}/src/core/Debugging
|
${CMAKE_SOURCE_DIR}/src/common/Debugging
|
||||||
${CMAKE_SOURCE_DIR}/src/core/Dynamic/LinkedReference
|
${CMAKE_SOURCE_DIR}/src/common/Dynamic/LinkedReference
|
||||||
${CMAKE_SOURCE_DIR}/src/core/Dynamic
|
${CMAKE_SOURCE_DIR}/src/common/Dynamic
|
||||||
${CMAKE_SOURCE_DIR}/src/core/Logging
|
${CMAKE_SOURCE_DIR}/src/common/Logging
|
||||||
${CMAKE_SOURCE_DIR}/src/core/Packets
|
${CMAKE_SOURCE_DIR}/src/common/Packets
|
||||||
${CMAKE_SOURCE_DIR}/src/core/Threading
|
${CMAKE_SOURCE_DIR}/src/common/Threading
|
||||||
${CMAKE_SOURCE_DIR}/src/core/Utilities
|
${CMAKE_SOURCE_DIR}/src/common/Utilities
|
||||||
${CMAKE_SOURCE_DIR}/src/framework/Addons
|
${CMAKE_SOURCE_DIR}/src/server/game/Addons
|
||||||
${game_INCLUDE_DIRS}
|
${game_INCLUDE_DIRS}
|
||||||
${CMAKE_SOURCE_DIR}/src/game
|
${CMAKE_SOURCE_DIR}/src/server/game
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Accounts
|
${CMAKE_SOURCE_DIR}/src/server/game/Accounts
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Achievements
|
${CMAKE_SOURCE_DIR}/src/server/game/Achievements
|
||||||
${CMAKE_SOURCE_DIR}/src/game/AI
|
${CMAKE_SOURCE_DIR}/src/server/game/AI
|
||||||
${CMAKE_SOURCE_DIR}/src/game/AI/CoreAI
|
${CMAKE_SOURCE_DIR}/src/server/game/AI/CoreAI
|
||||||
${CMAKE_SOURCE_DIR}/src/game/AI/ScriptedAI
|
${CMAKE_SOURCE_DIR}/src/server/game/AI/ScriptedAI
|
||||||
${CMAKE_SOURCE_DIR}/src/game/AI/SmartScripts
|
${CMAKE_SOURCE_DIR}/src/server/game/AI/SmartScripts
|
||||||
${CMAKE_SOURCE_DIR}/src/game/AuctionHouse
|
${CMAKE_SOURCE_DIR}/src/server/game/AuctionHouse
|
||||||
${CMAKE_SOURCE_DIR}/src/game/AuctionHouse/AuctionHouseBot
|
${CMAKE_SOURCE_DIR}/src/server/game/AuctionHouse/AuctionHouseBot
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Battlefield
|
${CMAKE_SOURCE_DIR}/src/server/game/Battlefield
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Battlefield/Zones
|
${CMAKE_SOURCE_DIR}/src/server/game/Battlefield/Zones
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Battlegrounds
|
${CMAKE_SOURCE_DIR}/src/server/game/Battlegrounds
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Battlegrounds/Zones
|
${CMAKE_SOURCE_DIR}/src/server/game/Battlegrounds/Zones
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Calendar
|
${CMAKE_SOURCE_DIR}/src/server/game/Calendar
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Chat
|
${CMAKE_SOURCE_DIR}/src/server/game/Chat
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Chat/Channels
|
${CMAKE_SOURCE_DIR}/src/server/game/Chat/Channels
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Combat
|
${CMAKE_SOURCE_DIR}/src/server/game/Combat
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Conditions
|
${CMAKE_SOURCE_DIR}/src/server/game/Conditions
|
||||||
${CMAKE_SOURCE_DIR}/src/game/DataStores
|
${CMAKE_SOURCE_DIR}/src/server/game/DataStores
|
||||||
${CMAKE_SOURCE_DIR}/src/game/DungeonFinding
|
${CMAKE_SOURCE_DIR}/src/server/game/DungeonFinding
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Entities
|
${CMAKE_SOURCE_DIR}/src/server/game/Entities
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Entities/Creature
|
${CMAKE_SOURCE_DIR}/src/server/game/Entities/Creature
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Entities/Corpse
|
${CMAKE_SOURCE_DIR}/src/server/game/Entities/Corpse
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Entities/DynamicObject
|
${CMAKE_SOURCE_DIR}/src/server/game/Entities/DynamicObject
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Entities/GameObject
|
${CMAKE_SOURCE_DIR}/src/server/game/Entities/GameObject
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Entities/Item
|
${CMAKE_SOURCE_DIR}/src/server/game/Entities/Item
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Entities/Item/Container
|
${CMAKE_SOURCE_DIR}/src/server/game/Entities/Item/Container
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Entities/Object
|
${CMAKE_SOURCE_DIR}/src/server/game/Entities/Object
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Entities/Object/Updates
|
${CMAKE_SOURCE_DIR}/src/server/game/Entities/Object/Updates
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Entities/Pet
|
${CMAKE_SOURCE_DIR}/src/server/game/Entities/Pet
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Entities/Player
|
${CMAKE_SOURCE_DIR}/src/server/game/Entities/Player
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Entities/Totem
|
${CMAKE_SOURCE_DIR}/src/server/game/Entities/Totem
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Entities/Unit
|
${CMAKE_SOURCE_DIR}/src/server/game/Entities/Unit
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Entities/Vehicle
|
${CMAKE_SOURCE_DIR}/src/server/game/Entities/Vehicle
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Entities/Transport
|
${CMAKE_SOURCE_DIR}/src/server/game/Entities/Transport
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Events
|
${CMAKE_SOURCE_DIR}/src/server/game/Events
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Globals
|
${CMAKE_SOURCE_DIR}/src/server/game/Globals
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Grids/Cells
|
${CMAKE_SOURCE_DIR}/src/server/game/Grids/Cells
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Grids/Notifiers
|
${CMAKE_SOURCE_DIR}/src/server/game/Grids/Notifiers
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Grids
|
${CMAKE_SOURCE_DIR}/src/server/game/Grids
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Groups
|
${CMAKE_SOURCE_DIR}/src/server/game/Groups
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Guilds
|
${CMAKE_SOURCE_DIR}/src/server/game/Guilds
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Handlers
|
${CMAKE_SOURCE_DIR}/src/server/game/Handlers
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Instances
|
${CMAKE_SOURCE_DIR}/src/server/game/Instances
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Loot
|
${CMAKE_SOURCE_DIR}/src/server/game/Loot
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Mails
|
${CMAKE_SOURCE_DIR}/src/server/game/Mails
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Maps
|
${CMAKE_SOURCE_DIR}/src/server/game/Maps
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Miscellaneous
|
${CMAKE_SOURCE_DIR}/src/server/game/Miscellaneous
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Movement
|
${CMAKE_SOURCE_DIR}/src/server/game/Movement
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Movement/Spline
|
${CMAKE_SOURCE_DIR}/src/server/game/Movement/Spline
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Movement/MovementGenerators
|
${CMAKE_SOURCE_DIR}/src/server/game/Movement/MovementGenerators
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Movement/Waypoints
|
${CMAKE_SOURCE_DIR}/src/server/game/Movement/Waypoints
|
||||||
${CMAKE_SOURCE_DIR}/src/game/OutdoorPvP
|
${CMAKE_SOURCE_DIR}/src/server/game/OutdoorPvP
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Pools
|
${CMAKE_SOURCE_DIR}/src/server/game/Pools
|
||||||
${CMAKE_SOURCE_DIR}/src/game/PrecompiledHeaders
|
${CMAKE_SOURCE_DIR}/src/server/game/PrecompiledHeaders
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Quests
|
${CMAKE_SOURCE_DIR}/src/server/game/Quests
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Reputation
|
${CMAKE_SOURCE_DIR}/src/server/game/Reputation
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Scripting
|
${CMAKE_SOURCE_DIR}/src/server/game/Scripting
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Server/Protocol
|
${CMAKE_SOURCE_DIR}/src/server/game/Server/Protocol
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Server
|
${CMAKE_SOURCE_DIR}/src/server/game/Server
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Skills
|
${CMAKE_SOURCE_DIR}/src/server/game/Skills
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Spells
|
${CMAKE_SOURCE_DIR}/src/server/game/Spells
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Spells/Auras
|
${CMAKE_SOURCE_DIR}/src/server/game/Spells/Auras
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Tools
|
${CMAKE_SOURCE_DIR}/src/server/game/Tools
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Warden
|
${CMAKE_SOURCE_DIR}/src/server/game/Warden
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Warden/Modules
|
${CMAKE_SOURCE_DIR}/src/server/game/Warden/Modules
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Weather
|
${CMAKE_SOURCE_DIR}/src/server/game/Weather
|
||||||
${CMAKE_SOURCE_DIR}/src/game/World
|
${CMAKE_SOURCE_DIR}/src/server/game/World
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Misc
|
${CMAKE_SOURCE_DIR}/src/server/game/Misc
|
||||||
${CMAKE_SOURCE_DIR}/src/scripts/PrecompiledHeaders
|
${CMAKE_SOURCE_DIR}/src/server/scripts/PrecompiledHeaders
|
||||||
${CMAKE_SOURCE_DIR}/src/authserver/Server
|
${CMAKE_SOURCE_DIR}/src/server/authserver/Server
|
||||||
${CMAKE_SOURCE_DIR}/src/authserver/Realms
|
${CMAKE_SOURCE_DIR}/src/server/authserver/Realms
|
||||||
${CMAKE_CURRENT_SOURCE_DIR}
|
${CMAKE_CURRENT_SOURCE_DIR}
|
||||||
${CMAKE_CURRENT_SOURCE_DIR}/CommandLine
|
${CMAKE_CURRENT_SOURCE_DIR}/CommandLine
|
||||||
${CMAKE_CURRENT_SOURCE_DIR}/RemoteAccess
|
${CMAKE_CURRENT_SOURCE_DIR}/RemoteAccess
|
||||||
|
|||||||
@@ -12,7 +12,7 @@
|
|||||||
file(GLOB_RECURSE sources *.cpp *.h)
|
file(GLOB_RECURSE sources *.cpp *.h)
|
||||||
|
|
||||||
set(include_Dirs
|
set(include_Dirs
|
||||||
${CMAKE_SOURCE_DIR}/src/core
|
${CMAKE_SOURCE_DIR}/src/common
|
||||||
${CMAKE_SOURCE_DIR}/deps/libmpq
|
${CMAKE_SOURCE_DIR}/deps/libmpq
|
||||||
${CMAKE_CURRENT_SOURCE_DIR}
|
${CMAKE_CURRENT_SOURCE_DIR}
|
||||||
${CMAKE_CURRENT_SOURCE_DIR}/loadlib
|
${CMAKE_CURRENT_SOURCE_DIR}/loadlib
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ file(GLOB_RECURSE meshExtract_Sources *.cpp *.h)
|
|||||||
|
|
||||||
set(include_Base
|
set(include_Base
|
||||||
${CMAKE_BINARY_DIR}
|
${CMAKE_BINARY_DIR}
|
||||||
${CMAKE_SOURCE_DIR}/src/core
|
${CMAKE_SOURCE_DIR}/src/common
|
||||||
${CMAKE_SOURCE_DIR}/deps/recastnavigation/Recast
|
${CMAKE_SOURCE_DIR}/deps/recastnavigation/Recast
|
||||||
${CMAKE_SOURCE_DIR}/deps/recastnavigation/Detour
|
${CMAKE_SOURCE_DIR}/deps/recastnavigation/Detour
|
||||||
${CMAKE_SOURCE_DIR}/deps/libmpq
|
${CMAKE_SOURCE_DIR}/deps/libmpq
|
||||||
|
|||||||
@@ -21,91 +21,91 @@ set(mmap_gen_Includes
|
|||||||
${CMAKE_SOURCE_DIR}/deps/g3dlite/include
|
${CMAKE_SOURCE_DIR}/deps/g3dlite/include
|
||||||
${CMAKE_SOURCE_DIR}/deps/recastnavigation/Recast
|
${CMAKE_SOURCE_DIR}/deps/recastnavigation/Recast
|
||||||
${CMAKE_SOURCE_DIR}/deps/recastnavigation/Detour
|
${CMAKE_SOURCE_DIR}/deps/recastnavigation/Detour
|
||||||
${CMAKE_SOURCE_DIR}/src/libraries/collision/
|
${CMAKE_SOURCE_DIR}/src/common/Collision/
|
||||||
${CMAKE_SOURCE_DIR}/src/libraries/collision/Management
|
${CMAKE_SOURCE_DIR}/src/common/Collision/Management
|
||||||
${CMAKE_SOURCE_DIR}/src/libraries/collision/Maps
|
${CMAKE_SOURCE_DIR}/src/common/Collision/Maps
|
||||||
${CMAKE_SOURCE_DIR}/src/libraries/collision/Models
|
${CMAKE_SOURCE_DIR}/src/common/Collision/Models
|
||||||
${CMAKE_SOURCE_DIR}/src/core
|
${CMAKE_SOURCE_DIR}/src/common
|
||||||
${CMAKE_SOURCE_DIR}/src/core/Configuration
|
${CMAKE_SOURCE_DIR}/src/common/Configuration
|
||||||
${CMAKE_SOURCE_DIR}/src/core/Cryptography
|
${CMAKE_SOURCE_DIR}/src/common/Cryptography
|
||||||
${CMAKE_SOURCE_DIR}/src/core/Cryptography/Authentication
|
${CMAKE_SOURCE_DIR}/src/common/Cryptography/Authentication
|
||||||
${CMAKE_SOURCE_DIR}/src/core/Database
|
${CMAKE_SOURCE_DIR}/src/common/Database
|
||||||
${CMAKE_SOURCE_DIR}/src/core/DataStores
|
${CMAKE_SOURCE_DIR}/src/common/DataStores
|
||||||
${CMAKE_SOURCE_DIR}/src/core/Debugging
|
${CMAKE_SOURCE_DIR}/src/common/Debugging
|
||||||
${CMAKE_SOURCE_DIR}/src/core/Dynamic/LinkedReference
|
${CMAKE_SOURCE_DIR}/src/common/Dynamic/LinkedReference
|
||||||
${CMAKE_SOURCE_DIR}/src/core/Dynamic
|
${CMAKE_SOURCE_DIR}/src/common/Dynamic
|
||||||
${CMAKE_SOURCE_DIR}/src/core/Logging
|
${CMAKE_SOURCE_DIR}/src/common/Logging
|
||||||
${CMAKE_SOURCE_DIR}/src/core/Packets
|
${CMAKE_SOURCE_DIR}/src/common/Packets
|
||||||
${CMAKE_SOURCE_DIR}/src/core/Threading
|
${CMAKE_SOURCE_DIR}/src/common/Threading
|
||||||
${CMAKE_SOURCE_DIR}/src/core/Utilities
|
${CMAKE_SOURCE_DIR}/src/common/Utilities
|
||||||
${CMAKE_SOURCE_DIR}/src/framework/Addons
|
${CMAKE_SOURCE_DIR}/src/server/game/Addons
|
||||||
${CMAKE_SOURCE_DIR}/src/game
|
${CMAKE_SOURCE_DIR}/src/server/game
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Accounts
|
${CMAKE_SOURCE_DIR}/src/server/game/Accounts
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Achievements
|
${CMAKE_SOURCE_DIR}/src/server/game/Achievements
|
||||||
${CMAKE_SOURCE_DIR}/src/game/AI
|
${CMAKE_SOURCE_DIR}/src/server/game/AI
|
||||||
${CMAKE_SOURCE_DIR}/src/game/AI/CoreAI
|
${CMAKE_SOURCE_DIR}/src/server/game/AI/CoreAI
|
||||||
${CMAKE_SOURCE_DIR}/src/game/AI/ScriptedAI
|
${CMAKE_SOURCE_DIR}/src/server/game/AI/ScriptedAI
|
||||||
${CMAKE_SOURCE_DIR}/src/game/AI/SmartScripts
|
${CMAKE_SOURCE_DIR}/src/server/game/AI/SmartScripts
|
||||||
${CMAKE_SOURCE_DIR}/src/game/AuctionHouse
|
${CMAKE_SOURCE_DIR}/src/server/game/AuctionHouse
|
||||||
${CMAKE_SOURCE_DIR}/src/game/AuctionHouse/AuctionHouseBot
|
${CMAKE_SOURCE_DIR}/src/server/game/AuctionHouse/AuctionHouseBot
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Battlefield
|
${CMAKE_SOURCE_DIR}/src/server/game/Battlefield
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Battlefield/Zones
|
${CMAKE_SOURCE_DIR}/src/server/game/Battlefield/Zones
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Battlegrounds
|
${CMAKE_SOURCE_DIR}/src/server/game/Battlegrounds
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Battlegrounds/Zones
|
${CMAKE_SOURCE_DIR}/src/server/game/Battlegrounds/Zones
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Calendar
|
${CMAKE_SOURCE_DIR}/src/server/game/Calendar
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Chat
|
${CMAKE_SOURCE_DIR}/src/server/game/Chat
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Chat/Channels
|
${CMAKE_SOURCE_DIR}/src/server/game/Chat/Channels
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Combat
|
${CMAKE_SOURCE_DIR}/src/server/game/Combat
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Conditions
|
${CMAKE_SOURCE_DIR}/src/server/game/Conditions
|
||||||
${CMAKE_SOURCE_DIR}/src/game/DataStores
|
${CMAKE_SOURCE_DIR}/src/server/game/DataStores
|
||||||
${CMAKE_SOURCE_DIR}/src/game/DungeonFinding
|
${CMAKE_SOURCE_DIR}/src/server/game/DungeonFinding
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Entities
|
${CMAKE_SOURCE_DIR}/src/server/game/Entities
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Entities/Creature
|
${CMAKE_SOURCE_DIR}/src/server/game/Entities/Creature
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Entities/Corpse
|
${CMAKE_SOURCE_DIR}/src/server/game/Entities/Corpse
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Entities/DynamicObject
|
${CMAKE_SOURCE_DIR}/src/server/game/Entities/DynamicObject
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Entities/GameObject
|
${CMAKE_SOURCE_DIR}/src/server/game/Entities/GameObject
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Entities/Item
|
${CMAKE_SOURCE_DIR}/src/server/game/Entities/Item
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Entities/Item/Container
|
${CMAKE_SOURCE_DIR}/src/server/game/Entities/Item/Container
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Entities/Object
|
${CMAKE_SOURCE_DIR}/src/server/game/Entities/Object
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Entities/Object/Updates
|
${CMAKE_SOURCE_DIR}/src/server/game/Entities/Object/Updates
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Entities/Pet
|
${CMAKE_SOURCE_DIR}/src/server/game/Entities/Pet
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Entities/Player
|
${CMAKE_SOURCE_DIR}/src/server/game/Entities/Player
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Entities/Totem
|
${CMAKE_SOURCE_DIR}/src/server/game/Entities/Totem
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Entities/Unit
|
${CMAKE_SOURCE_DIR}/src/server/game/Entities/Unit
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Entities/Vehicle
|
${CMAKE_SOURCE_DIR}/src/server/game/Entities/Vehicle
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Entities/Transport
|
${CMAKE_SOURCE_DIR}/src/server/game/Entities/Transport
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Events
|
${CMAKE_SOURCE_DIR}/src/server/game/Events
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Globals
|
${CMAKE_SOURCE_DIR}/src/server/game/Globals
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Grids/Cells
|
${CMAKE_SOURCE_DIR}/src/server/game/Grids/Cells
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Grids/Notifiers
|
${CMAKE_SOURCE_DIR}/src/server/game/Grids/Notifiers
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Grids
|
${CMAKE_SOURCE_DIR}/src/server/game/Grids
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Groups
|
${CMAKE_SOURCE_DIR}/src/server/game/Groups
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Guilds
|
${CMAKE_SOURCE_DIR}/src/server/game/Guilds
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Handlers
|
${CMAKE_SOURCE_DIR}/src/server/game/Handlers
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Instances
|
${CMAKE_SOURCE_DIR}/src/server/game/Instances
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Loot
|
${CMAKE_SOURCE_DIR}/src/server/game/Loot
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Mails
|
${CMAKE_SOURCE_DIR}/src/server/game/Mails
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Maps
|
${CMAKE_SOURCE_DIR}/src/server/game/Maps
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Miscellaneous
|
${CMAKE_SOURCE_DIR}/src/server/game/Miscellaneous
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Movement
|
${CMAKE_SOURCE_DIR}/src/server/game/Movement
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Movement/MovementGenerators
|
${CMAKE_SOURCE_DIR}/src/server/game/Movement/MovementGenerators
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Movement/Waypoints
|
${CMAKE_SOURCE_DIR}/src/server/game/Movement/Waypoints
|
||||||
${CMAKE_SOURCE_DIR}/src/game/OutdoorPvP
|
${CMAKE_SOURCE_DIR}/src/server/game/OutdoorPvP
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Pools
|
${CMAKE_SOURCE_DIR}/src/server/game/Pools
|
||||||
${CMAKE_SOURCE_DIR}/src/game/PrecompiledHeaders
|
${CMAKE_SOURCE_DIR}/src/server/game/PrecompiledHeaders
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Quests
|
${CMAKE_SOURCE_DIR}/src/server/game/Quests
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Reputation
|
${CMAKE_SOURCE_DIR}/src/server/game/Reputation
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Scripting
|
${CMAKE_SOURCE_DIR}/src/server/game/Scripting
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Server/Protocol
|
${CMAKE_SOURCE_DIR}/src/server/game/Server/Protocol
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Server
|
${CMAKE_SOURCE_DIR}/src/server/game/Server
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Skills
|
${CMAKE_SOURCE_DIR}/src/server/game/Skills
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Spells
|
${CMAKE_SOURCE_DIR}/src/server/game/Spells
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Spells/Auras
|
${CMAKE_SOURCE_DIR}/src/server/game/Spells/Auras
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Tools
|
${CMAKE_SOURCE_DIR}/src/server/game/Tools
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Warden
|
${CMAKE_SOURCE_DIR}/src/server/game/Warden
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Warden/Modules
|
${CMAKE_SOURCE_DIR}/src/server/game/Warden/Modules
|
||||||
${CMAKE_SOURCE_DIR}/src/game/Weather
|
${CMAKE_SOURCE_DIR}/src/server/game/Weather
|
||||||
${CMAKE_SOURCE_DIR}/src/game/World
|
${CMAKE_SOURCE_DIR}/src/server/game/World
|
||||||
)
|
)
|
||||||
|
|
||||||
if( WIN32 )
|
if( WIN32 )
|
||||||
|
|||||||
@@ -44,7 +44,7 @@ namespace MMAP
|
|||||||
|
|
||||||
// see following files:
|
// see following files:
|
||||||
// contrib/extractor/system.cpp
|
// contrib/extractor/system.cpp
|
||||||
// src/game/Map.cpp
|
// src/server/game/Map.cpp
|
||||||
|
|
||||||
struct MeshData
|
struct MeshData
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -11,11 +11,11 @@
|
|||||||
|
|
||||||
include_directories(
|
include_directories(
|
||||||
${CMAKE_SOURCE_DIR}/deps/g3dlite/include
|
${CMAKE_SOURCE_DIR}/deps/g3dlite/include
|
||||||
${CMAKE_SOURCE_DIR}/src/core
|
${CMAKE_SOURCE_DIR}/src/common
|
||||||
${CMAKE_SOURCE_DIR}/src/core/Debugging
|
${CMAKE_SOURCE_DIR}/src/common/Debugging
|
||||||
${CMAKE_SOURCE_DIR}/src/libraries/collision/
|
${CMAKE_SOURCE_DIR}/src/common/Collision/
|
||||||
${CMAKE_SOURCE_DIR}/src/libraries/collision/Maps
|
${CMAKE_SOURCE_DIR}/src/common/Collision/Maps
|
||||||
${CMAKE_SOURCE_DIR}/src/libraries/collision/Models
|
${CMAKE_SOURCE_DIR}/src/common/Collision/Models
|
||||||
${ACE_INCLUDE_DIR}
|
${ACE_INCLUDE_DIR}
|
||||||
${ZLIB_INCLUDE_DIR}
|
${ZLIB_INCLUDE_DIR}
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user