mirror of
https://github.com/azahar-emu/azahar.git
synced 2025-03-04 17:55:22 +01: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)
|