diff options
| author | liamwhite <liamwhite@users.noreply.github.com> | 2022-07-25 18:31:45 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-07-25 18:31:45 -0400 |
| commit | 1e67d2b59f6dfd561768db3fb9a8e0c6a16ec9f2 (patch) | |
| tree | 999411f1ca76390654d1034c6d0bd2c47c3f101c /src/network/CMakeLists.txt | |
| parent | 1bcde9dd9879fc2677695e9283f2fe1d68c935b2 (diff) | |
| parent | a41baaa181f30229d3552caa69135be978c1ddb5 (diff) | |
Merge pull request #8541 from FearlessTobi/multiplayer-part1
yuzu, network: Add room service and UI configuration
Diffstat (limited to 'src/network/CMakeLists.txt')
| -rw-r--r-- | src/network/CMakeLists.txt | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/network/CMakeLists.txt b/src/network/CMakeLists.txt new file mode 100644 index 000000000..382a69e2f --- /dev/null +++ b/src/network/CMakeLists.txt @@ -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) |
