mirror of
https://git.h3cjp.net/H3cJP/citra.git
synced 2025-10-07 12:29:50 +00:00
32 lines
727 B
CMake
32 lines
727 B
CMake
add_library(network STATIC
|
|
announce_multiplayer_session.cpp
|
|
announce_multiplayer_session.h
|
|
network.cpp
|
|
network.h
|
|
network_settings.cpp
|
|
network_settings.h
|
|
packet.cpp
|
|
packet.h
|
|
precompiled_headers.h
|
|
room.cpp
|
|
room.h
|
|
room_member.cpp
|
|
room_member.h
|
|
verify_user.cpp
|
|
verify_user.h
|
|
network_clients/nasc.h
|
|
network_clients/nasc.cpp
|
|
)
|
|
|
|
create_target_directory_groups(network)
|
|
|
|
if (ENABLE_WEB_SERVICE)
|
|
target_link_libraries(network PRIVATE web_service)
|
|
endif()
|
|
|
|
target_link_libraries(network PRIVATE citra_common enet Boost::serialization cryptopp httplib)
|
|
|
|
if (CITRA_USE_PRECOMPILED_HEADERS)
|
|
target_precompile_headers(network PRIVATE precompiled_headers.h)
|
|
endif()
|