diff options
| author | 2022-12-05 12:26:09 -0500 | |
|---|---|---|
| committer | 2022-12-05 12:26:09 -0500 | |
| commit | 3b19f741bd6a19f603858e6cdf8db41516c7075f (patch) | |
| tree | b81c29eed062f83a3f01161710b00d5d531e666b /src/network | |
| parent | Merge pull request #9383 from FernandoS27/poke-great (diff) | |
| parent | cmake: prefer system libraries (diff) | |
| download | yuzu-3b19f741bd6a19f603858e6cdf8db41516c7075f.tar.gz yuzu-3b19f741bd6a19f603858e6cdf8db41516c7075f.tar.xz yuzu-3b19f741bd6a19f603858e6cdf8db41516c7075f.zip | |
Merge pull request #6833 from abouvier/unbundle
cmake: prefer system libraries
Diffstat (limited to 'src/network')
| -rw-r--r-- | src/network/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/network/CMakeLists.txt b/src/network/CMakeLists.txt index c85c308de..1ab52da59 100644 --- a/src/network/CMakeLists.txt +++ b/src/network/CMakeLists.txt | |||
| @@ -19,7 +19,7 @@ add_library(network STATIC | |||
| 19 | 19 | ||
| 20 | create_target_directory_groups(network) | 20 | create_target_directory_groups(network) |
| 21 | 21 | ||
| 22 | target_link_libraries(network PRIVATE common enet Boost::boost) | 22 | target_link_libraries(network PRIVATE common enet::enet Boost::boost) |
| 23 | if (ENABLE_WEB_SERVICE) | 23 | if (ENABLE_WEB_SERVICE) |
| 24 | target_compile_definitions(network PRIVATE -DENABLE_WEB_SERVICE) | 24 | target_compile_definitions(network PRIVATE -DENABLE_WEB_SERVICE) |
| 25 | target_link_libraries(network PRIVATE web_service) | 25 | target_link_libraries(network PRIVATE web_service) |