diff options
| author | 2021-12-25 20:27:52 +0100 | |
|---|---|---|
| committer | 2022-07-25 21:59:28 +0200 | |
| commit | 705f7db84dd85555a6aef1e136cf251725cef293 (patch) | |
| tree | e110c6482a11d711d18515afce4fc50adcee76e7 /src/core/CMakeLists.txt | |
| parent | network: Add initial files and enet dependency (diff) | |
| download | yuzu-705f7db84dd85555a6aef1e136cf251725cef293.tar.gz yuzu-705f7db84dd85555a6aef1e136cf251725cef293.tar.xz yuzu-705f7db84dd85555a6aef1e136cf251725cef293.zip | |
yuzu: Add ui files for multiplayer rooms
Diffstat (limited to 'src/core/CMakeLists.txt')
| -rw-r--r-- | src/core/CMakeLists.txt | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt index 32cc2f392..48f5c1ee0 100644 --- a/src/core/CMakeLists.txt +++ b/src/core/CMakeLists.txt | |||
| @@ -1,4 +1,6 @@ | |||
| 1 | add_library(core STATIC | 1 | add_library(core STATIC |
| 2 | announce_multiplayer_session.cpp | ||
| 3 | announce_multiplayer_session.h | ||
| 2 | arm/arm_interface.h | 4 | arm/arm_interface.h |
| 3 | arm/arm_interface.cpp | 5 | arm/arm_interface.cpp |
| 4 | arm/cpu_interrupt_handler.cpp | 6 | arm/cpu_interrupt_handler.cpp |
| @@ -741,11 +743,11 @@ add_library(core STATIC | |||
| 741 | memory/dmnt_cheat_vm.h | 743 | memory/dmnt_cheat_vm.h |
| 742 | memory.cpp | 744 | memory.cpp |
| 743 | memory.h | 745 | memory.h |
| 744 | network/network.cpp | 746 | internal_network/network.cpp |
| 745 | network/network.h | 747 | internal_network/network.h |
| 746 | network/network_interface.cpp | 748 | internal_network/network_interface.cpp |
| 747 | network/network_interface.h | 749 | internal_network/network_interface.h |
| 748 | network/sockets.h | 750 | internal_network/sockets.h |
| 749 | perf_stats.cpp | 751 | perf_stats.cpp |
| 750 | perf_stats.h | 752 | perf_stats.h |
| 751 | reporter.cpp | 753 | reporter.cpp |
| @@ -780,7 +782,7 @@ endif() | |||
| 780 | 782 | ||
| 781 | create_target_directory_groups(core) | 783 | create_target_directory_groups(core) |
| 782 | 784 | ||
| 783 | target_link_libraries(core PUBLIC common PRIVATE audio_core video_core) | 785 | target_link_libraries(core PUBLIC common PRIVATE audio_core network video_core) |
| 784 | target_link_libraries(core PUBLIC Boost::boost PRIVATE fmt::fmt nlohmann_json::nlohmann_json mbedtls Opus::Opus) | 786 | target_link_libraries(core PUBLIC Boost::boost PRIVATE fmt::fmt nlohmann_json::nlohmann_json mbedtls Opus::Opus) |
| 785 | if (MINGW) | 787 | if (MINGW) |
| 786 | target_link_libraries(core PRIVATE ${MSWSOCK_LIBRARY}) | 788 | target_link_libraries(core PRIVATE ${MSWSOCK_LIBRARY}) |