Relocate akashi into a subdirectory.
Will be used to make space for tests as well.
5
Doxyfile
@ -829,8 +829,7 @@ WARN_LOGFILE =
|
|||||||
# spaces. See also FILE_PATTERNS and EXTENSION_MAPPING
|
# spaces. See also FILE_PATTERNS and EXTENSION_MAPPING
|
||||||
# Note: If this tag is empty the current directory is searched.
|
# Note: If this tag is empty the current directory is searched.
|
||||||
|
|
||||||
INPUT = src/ \
|
INPUT = akashi/ \
|
||||||
include/ \
|
|
||||||
README.md
|
README.md
|
||||||
|
|
||||||
# This tag can be used to specify the character encoding of the source files
|
# This tag can be used to specify the character encoding of the source files
|
||||||
@ -910,7 +909,7 @@ FILE_PATTERNS = *.c \
|
|||||||
# be searched for input files as well.
|
# be searched for input files as well.
|
||||||
# The default value is: NO.
|
# The default value is: NO.
|
||||||
|
|
||||||
RECURSIVE = NO
|
RECURSIVE = YES
|
||||||
|
|
||||||
# The EXCLUDE tag can be used to specify files and/or directories that should be
|
# The EXCLUDE tag can be used to specify files and/or directories that should be
|
||||||
# excluded from the INPUT source files. This way you can easily exclude a
|
# excluded from the INPUT source files. This way you can easily exclude a
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
# akashi <img src="https://github.com/AttorneyOnline/akashi/blob/master/resource/icon/256.png" width=30 height=30>
|
# akashi <img src="https://github.com/AttorneyOnline/akashi/blob/master/akashi/resource/icon/256.png" width=30 height=30>
|
||||||
A C++ server for Attorney Online 2
|
A C++ server for Attorney Online 2
|
||||||
|
|
||||||
# Build instructions
|
# Build instructions
|
||||||
|
63
akashi.pro
@ -1,61 +1,4 @@
|
|||||||
QT += network websockets core sql
|
TEMPLATE = subdirs
|
||||||
QT -= gui
|
|
||||||
TEMPLATE = app
|
|
||||||
|
|
||||||
CONFIG += c++11 console
|
SUBDIRS += \
|
||||||
|
akashi
|
||||||
# The following define makes your compiler emit warnings if you use
|
|
||||||
# any Qt feature that has been marked deprecated (the exact warnings
|
|
||||||
# depend on your compiler). Please consult the documentation of the
|
|
||||||
# deprecated API in order to know how to port your code away from it.
|
|
||||||
DEFINES += QT_DEPRECATED_WARNINGS
|
|
||||||
|
|
||||||
# You can also make your code fail to compile if it uses deprecated APIs.
|
|
||||||
# In order to do so, uncomment the following line.
|
|
||||||
# You can also select to disable deprecated APIs only up to a certain version of Qt.
|
|
||||||
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
|
|
||||||
|
|
||||||
QMAKE_CXXFLAGS_WARN_OFF -= -Wunused-parameter
|
|
||||||
|
|
||||||
DESTDIR = $$PWD/bin
|
|
||||||
OBJECTS_DIR = $$PWD/build
|
|
||||||
MOC_DIR = $$PWD/build
|
|
||||||
|
|
||||||
RC_ICONS = resource/icon/akashi.ico
|
|
||||||
|
|
||||||
# Enable this to print network messages tothe console
|
|
||||||
#DEFINES += NET_DEBUG
|
|
||||||
|
|
||||||
SOURCES += src/advertiser.cpp \
|
|
||||||
src/aoclient.cpp \
|
|
||||||
src/aopacket.cpp \
|
|
||||||
src/area_data.cpp \
|
|
||||||
src/commands/area.cpp \
|
|
||||||
src/commands/authentication.cpp \
|
|
||||||
src/commands/casing.cpp \
|
|
||||||
src/commands/command_helper.cpp \
|
|
||||||
src/commands/messaging.cpp \
|
|
||||||
src/commands/moderation.cpp \
|
|
||||||
src/commands/music.cpp \
|
|
||||||
src/commands/roleplay.cpp \
|
|
||||||
src/config_manager.cpp \
|
|
||||||
src/db_manager.cpp \
|
|
||||||
src/logger.cpp \
|
|
||||||
src/main.cpp \
|
|
||||||
src/packets.cpp \
|
|
||||||
src/server.cpp \
|
|
||||||
src/testimony_recorder.cpp \
|
|
||||||
src/ws_client.cpp \
|
|
||||||
src/ws_proxy.cpp
|
|
||||||
|
|
||||||
|
|
||||||
HEADERS += include/advertiser.h \
|
|
||||||
include/aoclient.h \
|
|
||||||
include/aopacket.h \
|
|
||||||
include/area_data.h \
|
|
||||||
include/config_manager.h \
|
|
||||||
include/db_manager.h \
|
|
||||||
include/logger.h \
|
|
||||||
include/server.h \
|
|
||||||
include/ws_client.h \
|
|
||||||
include/ws_proxy.h
|
|
||||||
|
61
akashi/akashi.pro
Normal file
@ -0,0 +1,61 @@
|
|||||||
|
QT += network websockets core sql
|
||||||
|
QT -= gui
|
||||||
|
TEMPLATE = app
|
||||||
|
|
||||||
|
CONFIG += c++11 console
|
||||||
|
|
||||||
|
# The following define makes your compiler emit warnings if you use
|
||||||
|
# any Qt feature that has been marked deprecated (the exact warnings
|
||||||
|
# depend on your compiler). Please consult the documentation of the
|
||||||
|
# deprecated API in order to know how to port your code away from it.
|
||||||
|
DEFINES += QT_DEPRECATED_WARNINGS
|
||||||
|
|
||||||
|
# You can also make your code fail to compile if it uses deprecated APIs.
|
||||||
|
# In order to do so, uncomment the following line.
|
||||||
|
# You can also select to disable deprecated APIs only up to a certain version of Qt.
|
||||||
|
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
|
||||||
|
|
||||||
|
QMAKE_CXXFLAGS_WARN_OFF -= -Wunused-parameter
|
||||||
|
|
||||||
|
DESTDIR = $$PWD/../bin
|
||||||
|
OBJECTS_DIR = $$PWD/../build
|
||||||
|
MOC_DIR = $$PWD/../build
|
||||||
|
|
||||||
|
RC_ICONS = resource/icon/akashi.ico
|
||||||
|
|
||||||
|
# Enable this to print network messages tothe console
|
||||||
|
#DEFINES += NET_DEBUG
|
||||||
|
|
||||||
|
SOURCES += src/advertiser.cpp \
|
||||||
|
src/aoclient.cpp \
|
||||||
|
src/aopacket.cpp \
|
||||||
|
src/area_data.cpp \
|
||||||
|
src/commands/area.cpp \
|
||||||
|
src/commands/authentication.cpp \
|
||||||
|
src/commands/casing.cpp \
|
||||||
|
src/commands/command_helper.cpp \
|
||||||
|
src/commands/messaging.cpp \
|
||||||
|
src/commands/moderation.cpp \
|
||||||
|
src/commands/music.cpp \
|
||||||
|
src/commands/roleplay.cpp \
|
||||||
|
src/config_manager.cpp \
|
||||||
|
src/db_manager.cpp \
|
||||||
|
src/logger.cpp \
|
||||||
|
src/main.cpp \
|
||||||
|
src/packets.cpp \
|
||||||
|
src/server.cpp \
|
||||||
|
src/testimony_recorder.cpp \
|
||||||
|
src/ws_client.cpp \
|
||||||
|
src/ws_proxy.cpp
|
||||||
|
|
||||||
|
|
||||||
|
HEADERS += include/advertiser.h \
|
||||||
|
include/aoclient.h \
|
||||||
|
include/aopacket.h \
|
||||||
|
include/area_data.h \
|
||||||
|
include/config_manager.h \
|
||||||
|
include/db_manager.h \
|
||||||
|
include/logger.h \
|
||||||
|
include/server.h \
|
||||||
|
include/ws_client.h \
|
||||||
|
include/ws_proxy.h
|
Before Width: | Height: | Size: 716 B After Width: | Height: | Size: 716 B |
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 19 KiB After Width: | Height: | Size: 19 KiB |