blob: 382a69e2f7fd27b24af29665a1f2deeb03d84152 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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)
|