Signed-off-by: crueter <crueter@eden-emu.dev>
This commit is contained in:
parent
4042f50a21
commit
2a1c90eb93
2 changed files with 5 additions and 1 deletions
|
@ -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)
|
||||
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue