enet
Some checks failed
eden-license / license-header (pull_request) Failing after 19s

Signed-off-by: crueter <crueter@eden-emu.dev>
This commit is contained in:
crueter 2025-09-21 03:02:52 -04:00
parent 4042f50a21
commit 2a1c90eb93
Signed by: crueter
GPG key ID: 425ACD2D4830EBC6
2 changed files with 5 additions and 1 deletions

View file

@ -449,6 +449,10 @@ if (YUZU_USE_CPM)
target_include_directories(enet INTERFACE ${enet_SOURCE_DIR}/include)
endif()
if (NOT TARGET enet::enet)
add_library(enet::enet ALIAS enet)
endif()
# Opus
AddJsonPackage(opus)

View file

@ -22,7 +22,7 @@ add_library(network STATIC
create_target_directory_groups(network)
target_link_libraries(network PRIVATE common enet Boost::headers)
target_link_libraries(network PRIVATE common enet::enet Boost::headers)
if (ENABLE_WEB_SERVICE)
target_compile_definitions(network PRIVATE ENABLE_WEB_SERVICE)
target_link_libraries(network PRIVATE web_service)