mirror of
https://github.com/EQEmu/Server.git
synced 2026-03-07 15:32:25 +00:00
* Beginning of cleanup * More cleanup * More cleanup * Enc cleanup * client manager cleanup * client cleanup * More cleanup * More cleanup * Cleanup * More cleanup, account context, account management * Remove positional fmt bindings * Use LoginAccountContext * Update loginserver_webserver.cpp * Remove comments * Port CreateLoginServerAccount to repositories * More cleanup * More cleanup * More cleanup * More cleanup * Remove a ton of functions * More cleanup * More cleanup * More cleanup * Cleanup SendClientAuthToWorld * Consolidate world server logic * Update login_accounts_repository.h * Update login_accounts_repository.h * Move api tokens to repositories * Cleanup options * Move everything else to repositories * Update account_management.cpp * uint64 account * Update login_schema.sql * Fix * Update world_server.cpp * auto
36 lines
722 B
CMake
36 lines
722 B
CMake
CMAKE_MINIMUM_REQUIRED(VERSION 3.12)
|
|
|
|
SET(eqlogin_sources
|
|
account_management.cpp
|
|
client.cpp
|
|
client_manager.cpp
|
|
encryption.cpp
|
|
loginserver_command_handler.cpp
|
|
loginserver_webserver.cpp
|
|
main.cpp
|
|
world_server_manager.cpp
|
|
world_server.cpp
|
|
)
|
|
|
|
SET(eqlogin_headers
|
|
account_management.h
|
|
client.h
|
|
client_manager.h
|
|
encryption.h
|
|
loginserver_command_handler.h
|
|
loginserver_webserver.h
|
|
login_server.h
|
|
login_types.h
|
|
options.h
|
|
world_server_manager.h
|
|
world_server.h
|
|
)
|
|
|
|
ADD_EXECUTABLE(loginserver ${eqlogin_sources} ${eqlogin_headers})
|
|
|
|
INSTALL(TARGETS loginserver RUNTIME DESTINATION ${CMAKE_INSTALL_PREFIX}/bin)
|
|
|
|
TARGET_LINK_LIBRARIES(loginserver ${SERVER_LIBS})
|
|
|
|
SET(EXECUTABLE_OUTPUT_PATH ${PROJECT_BINARY_DIR}/bin)
|