mirror of
https://github.com/EQEmu/Server.git
synced 2026-03-23 23:12:25 +00:00
More
This commit is contained in:
parent
75a11552fc
commit
f8712b8baf
@ -542,7 +542,6 @@ SET(common_headers
|
|||||||
eqemu_config.h
|
eqemu_config.h
|
||||||
eqemu_config_elements.h
|
eqemu_config_elements.h
|
||||||
eqemu_logsys.h
|
eqemu_logsys.h
|
||||||
eqemu_logsys_log_aliases.h
|
|
||||||
eq_limits.h
|
eq_limits.h
|
||||||
eq_packet.h
|
eq_packet.h
|
||||||
eq_stream_ident.h
|
eq_stream_ident.h
|
||||||
|
|||||||
@ -21,7 +21,6 @@
|
|||||||
#include "bodytypes.h"
|
#include "bodytypes.h"
|
||||||
#include "data_verification.h"
|
#include "data_verification.h"
|
||||||
#include "eqemu_logsys.h"
|
#include "eqemu_logsys.h"
|
||||||
#include "eqemu_logsys_log_aliases.h"
|
|
||||||
#include "rulesys.h"
|
#include "rulesys.h"
|
||||||
|
|
||||||
int16 EQ::invtype::GetInvTypeSize(int16 inv_type) {
|
int16 EQ::invtype::GetInvTypeSize(int16 inv_type) {
|
||||||
|
|||||||
@ -246,7 +246,7 @@ namespace Logs {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
#include "eqemu_logsys_log_aliases.h"
|
#include "eqemu_logsys_log_aliases.cpp"
|
||||||
|
|
||||||
class Database;
|
class Database;
|
||||||
|
|
||||||
|
|||||||
@ -18,8 +18,8 @@
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef EQEMU_EQEMU_LOGSYS_LOG_ALIASES_H
|
#ifndef EQEMU_EQEMU_LOGSYS_LOG_ALIASES_CPP
|
||||||
#define EQEMU_EQEMU_LOGSYS_LOG_ALIASES_H
|
#define EQEMU_EQEMU_LOGSYS_LOG_ALIASES_CPP
|
||||||
|
|
||||||
#define LogAA(message, ...) do {\
|
#define LogAA(message, ...) do {\
|
||||||
if (LogSys.IsLogEnabled(Logs::General, Logs::AA))\
|
if (LogSys.IsLogEnabled(Logs::General, Logs::AA))\
|
||||||
@ -855,4 +855,4 @@
|
|||||||
} while (0)
|
} while (0)
|
||||||
|
|
||||||
|
|
||||||
#endif //EQEMU_EQEMU_LOGSYS_LOG_ALIASES_H
|
#endif //EQEMU_EQEMU_LOGSYS_LOG_ALIASES_CPP
|
||||||
@ -14,5 +14,6 @@
|
|||||||
#include <cstdio>
|
#include <cstdio>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <mutex>
|
#include <mutex>
|
||||||
|
#include <filesystem>
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@ -12,6 +12,7 @@ perl utils/scripts/build/tag-version.pl
|
|||||||
mkdir -p build && cd build && \
|
mkdir -p build && cd build && \
|
||||||
cmake -DEQEMU_BUILD_TESTS=ON \
|
cmake -DEQEMU_BUILD_TESTS=ON \
|
||||||
-DEQEMU_BUILD_STATIC=ON \
|
-DEQEMU_BUILD_STATIC=ON \
|
||||||
|
-DEQEMU_BUILD_PCH=ON \
|
||||||
-DEQEMU_BUILD_LOGIN=ON \
|
-DEQEMU_BUILD_LOGIN=ON \
|
||||||
-DEQEMU_BUILD_LUA=ON \
|
-DEQEMU_BUILD_LUA=ON \
|
||||||
-DEQEMU_BUILD_PERL=ON \
|
-DEQEMU_BUILD_PERL=ON \
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
#include "../../common/eqemu_logsys_log_aliases.h"
|
#include "../../common/eqemu_logsys.h"
|
||||||
#include "../worlddb.h"
|
#include "../worlddb.h"
|
||||||
|
|
||||||
void WorldserverCLI::CopyCharacter(int argc, char **argv, argh::parser &cmd, std::string &description)
|
void WorldserverCLI::CopyCharacter(int argc, char **argv, argh::parser &cmd, std::string &description)
|
||||||
|
|||||||
@ -295,7 +295,7 @@ IF (EQEMU_BUILD_PCH)
|
|||||||
TARGET_PRECOMPILE_HEADERS(zone PRIVATE ../common/pch/pch-utilities.h)
|
TARGET_PRECOMPILE_HEADERS(zone PRIVATE ../common/pch/pch-utilities.h)
|
||||||
TARGET_PRECOMPILE_HEADERS(zone PRIVATE ../common/pch/pch-types.h)
|
TARGET_PRECOMPILE_HEADERS(zone PRIVATE ../common/pch/pch-types.h)
|
||||||
TARGET_PRECOMPILE_HEADERS(zone PRIVATE ../common/pch/pch-fmt.h)
|
TARGET_PRECOMPILE_HEADERS(zone PRIVATE ../common/pch/pch-fmt.h)
|
||||||
TARGET_PRECOMPILE_HEADERS(zone PRIVATE ../common/types.h ../common/eqemu_logsys.h ../common/eqemu_logsys_log_aliases.h ../common/features.h ../common/global_define.h)
|
TARGET_PRECOMPILE_HEADERS(zone PRIVATE ../common/types.h ../common/eqemu_logsys.h ../common/eqemu_logsys_log_aliases.cpp ../common/features.h ../common/global_define.h)
|
||||||
TARGET_PRECOMPILE_HEADERS(zone PRIVATE pch/pch.h)
|
TARGET_PRECOMPILE_HEADERS(zone PRIVATE pch/pch.h)
|
||||||
ENDIF()
|
ENDIF()
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user