Core/HW: Add cpp-ipc subdirectory in main CMake file.

This commit is contained in:
cristian64 2025-08-09 19:14:30 +01:00
parent 92a2018934
commit a74e736d29
2 changed files with 13 additions and 0 deletions

View File

@ -793,6 +793,10 @@ endif()
add_subdirectory(Externals/watcher) add_subdirectory(Externals/watcher)
if(WIN32 OR LINUX)
add_subdirectory(Externals/cpp-ipc)
endif()
######################################## ########################################
# Pre-build events: Define configuration variables and write SCM info header # Pre-build events: Define configuration variables and write SCM info header
# #

9
Externals/cpp-ipc/CMakeLists.txt vendored Normal file
View File

@ -0,0 +1,9 @@
add_subdirectory(cpp-ipc)
dolphin_disable_warnings(ipc)
if (NOT MSVC)
target_compile_options(ipc PRIVATE "-fexceptions")
endif ()
add_library(cpp-ipc::ipc ALIAS ipc)