mirror of
https://github.com/starr-dusT/citra.git
synced 2024-10-02 10:26:17 -07: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)
|