You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
378 B
18 lines
378 B
set(SRCS
|
|
network.cpp
|
|
packet.cpp
|
|
room.cpp
|
|
room_member.cpp
|
|
)
|
|
|
|
set(HEADERS
|
|
network.h
|
|
packet.h
|
|
room.h
|
|
room_member.h
|
|
)
|
|
|
|
create_directory_groups(${SRCS} ${HEADERS})
|
|
|
|
add_library(network STATIC ${SRCS} ${HEADERS})
|
|
target_link_libraries(network PRIVATE common enet)
|