diff options
author | FearlessTobi <thm.frey@gmail.com> | 2022-07-06 02:20:39 +0200 |
---|---|---|
committer | FearlessTobi <thm.frey@gmail.com> | 2022-07-25 21:57:14 +0200 |
commit | dcfe0a5febb252e3a4f40c1b25765740a269467f (patch) | |
tree | 3f06aa974d4bfba52df45697070ef112b701054b /src/network/CMakeLists.txt | |
parent | 1bcde9dd9879fc2677695e9283f2fe1d68c935b2 (diff) |
network: Add initial files and enet dependency
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) |