Server Listener

Implemented the basic server system and routed the data to a new class for processing.
This commit is contained in:
Anonymous275
2020-01-29 21:27:26 +02:00
parent dbaf7d5de0
commit 1f620f4093
18 changed files with 6007 additions and 1123 deletions
+2 -6
View File
@@ -3,9 +3,5 @@ project(BeamNG-MP-Server)
set(CMAKE_CXX_STANDARD 14)
add_executable(cmake-main src/main.cpp src/network.cpp src/logger.cpp src/config.cpp)
ADD_LIBRARY(
enet STATIC
enet.lib
)
set_target_properties(enet PROPERTIES LINKER_LANGUAGE CXX)
add_executable(BeamNG-MP-Server src/main.cpp src/logger.cpp src/config.cpp src/Network/Server.cpp src/Network/enet.h src/Network/DataParser.cpp)
target_link_libraries(BeamNG-MP-Server winmm ws2_32)