mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2024-11-16 00:30:05 +00:00
17 lines
334 B
CMake
17 lines
334 B
CMake
|
set(SRCS
|
||
|
network.cpp
|
||
|
room.cpp
|
||
|
room_member.cpp
|
||
|
)
|
||
|
|
||
|
set(HEADERS
|
||
|
network.h
|
||
|
room.h
|
||
|
room_member.h
|
||
|
)
|
||
|
|
||
|
create_directory_groups(${SRCS} ${HEADERS})
|
||
|
|
||
|
add_library(network STATIC ${SRCS} ${HEADERS})
|
||
|
target_link_libraries(network PRIVATE common enet)
|