network: Add initial files and enet dependency

This commit is contained in:
FearlessTobi 2022-07-06 02:20:39 +02:00
parent 1bcde9dd98
commit dcfe0a5feb
15 changed files with 2898 additions and 0 deletions

View file

@ -0,0 +1,16 @@
add_library(network STATIC
network.cpp
network.h
packet.cpp
packet.h
room.cpp
room.h
room_member.cpp
room_member.h
verify_user.cpp
verify_user.h
)
create_target_directory_groups(network)
target_link_libraries(network PRIVATE common enet Boost::boost)