diff options
Diffstat (limited to 'src/network/CMakeLists.txt')
| -rw-r--r-- | src/network/CMakeLists.txt | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/network/CMakeLists.txt b/src/network/CMakeLists.txt new file mode 100644 index 000000000..312f79b68 --- /dev/null +++ b/src/network/CMakeLists.txt | |||
| @@ -0,0 +1,19 @@ | |||
| 1 | # SPDX-FileCopyrightText: 2022 yuzu Emulator Project | ||
| 2 | # SPDX-License-Identifier: GPL-3.0-or-later | ||
| 3 | |||
| 4 | add_library(network STATIC | ||
| 5 | network.cpp | ||
| 6 | network.h | ||
| 7 | packet.cpp | ||
| 8 | packet.h | ||
| 9 | room.cpp | ||
| 10 | room.h | ||
| 11 | room_member.cpp | ||
| 12 | room_member.h | ||
| 13 | verify_user.cpp | ||
| 14 | verify_user.h | ||
| 15 | ) | ||
| 16 | |||
| 17 | create_target_directory_groups(network) | ||
| 18 | |||
| 19 | target_link_libraries(network PRIVATE common enet Boost::boost) | ||