mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-11 16:51:29 +00:00
* Start of discord integration work * more testing * Discord client work * More discord work * Cleanup * Handle retry timer response and max retries * Update base retry timer * Move Discord queue handler to UCS, add queuer to own thread * Post merge * Send up Zone::SendDiscordMessage * Start of discord integration work * more testing * Discord client work * More discord work * Cleanup * Move Discord queue handler to UCS, add queuer to own thread * Post merge * Push up tables * Quest API stuff. * Update 2022_05_07_discord_webhooks.sql * Post merge fixes * Push up manifest * Flip logging signs in logic from copy / paste of inverse logic before * Make sure we add new line to quest api sourced messages Co-authored-by: Kinglykrab <kinglykrab@gmail.com>
27 lines
509 B
CMake
27 lines
509 B
CMake
CMAKE_MINIMUM_REQUIRED(VERSION 3.2)
|
|
|
|
SET(qserv_sources
|
|
database.cpp
|
|
lfguild.cpp
|
|
queryserv.cpp
|
|
queryservconfig.cpp
|
|
worldserver.cpp
|
|
)
|
|
|
|
SET(qserv_headers
|
|
database.h
|
|
lfguild.h
|
|
queryservconfig.h
|
|
worldserver.h
|
|
)
|
|
|
|
ADD_EXECUTABLE(queryserv ${qserv_sources} ${qserv_headers})
|
|
|
|
INSTALL(TARGETS queryserv RUNTIME DESTINATION ${CMAKE_INSTALL_PREFIX}/bin)
|
|
|
|
ADD_DEFINITIONS(-DQSERV)
|
|
|
|
TARGET_LINK_LIBRARIES(queryserv ${SERVER_LIBS})
|
|
|
|
SET(EXECUTABLE_OUTPUT_PATH ${PROJECT_BINARY_DIR}/bin)
|