summaryrefslogtreecommitdiff
path: root/src/core/CMakeLists.txt
diff options
context:
space:
mode:
authorGravatar FearlessTobi2021-12-25 20:27:52 +0100
committerGravatar FearlessTobi2022-07-25 21:59:28 +0200
commit705f7db84dd85555a6aef1e136cf251725cef293 (patch)
treee110c6482a11d711d18515afce4fc50adcee76e7 /src/core/CMakeLists.txt
parentnetwork: Add initial files and enet dependency (diff)
downloadyuzu-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.txt14
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 @@
1add_library(core STATIC 1add_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
781create_target_directory_groups(core) 783create_target_directory_groups(core)
782 784
783target_link_libraries(core PUBLIC common PRIVATE audio_core video_core) 785target_link_libraries(core PUBLIC common PRIVATE audio_core network video_core)
784target_link_libraries(core PUBLIC Boost::boost PRIVATE fmt::fmt nlohmann_json::nlohmann_json mbedtls Opus::Opus) 786target_link_libraries(core PUBLIC Boost::boost PRIVATE fmt::fmt nlohmann_json::nlohmann_json mbedtls Opus::Opus)
785if (MINGW) 787if (MINGW)
786 target_link_libraries(core PRIVATE ${MSWSOCK_LIBRARY}) 788 target_link_libraries(core PRIVATE ${MSWSOCK_LIBRARY})