mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-07-09 10:57:51 -05:00
network: Add initial files and enet dependency
This commit is contained in:
16
src/network/CMakeLists.txt
Normal file
16
src/network/CMakeLists.txt
Normal 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)
|
Reference in New Issue
Block a user