BeamMP-Server/CMakeLists.txt
Anonymous275 1f620f4093 Server Listener
Implemented the basic server system and routed the data to a new class for processing.
2020-01-29 21:27:26 +02:00

7 lines
295 B
CMake

cmake_minimum_required(VERSION 3.15)
project(BeamNG-MP-Server)
set(CMAKE_CXX_STANDARD 14)
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)