mirror of
https://git.citron-emu.org/citron/emulator
synced 2026-02-02 23:53:36 +00:00
19 lines
378 B
CMake
19 lines
378 B
CMake
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)
|