mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-14 05:55:13 +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)
|