mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-11-23 09:54:57 +00:00
Core/HW: Add cpp-ipc subdirectory in main CMake file.
This commit is contained in:
parent
92a2018934
commit
a74e736d29
@ -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
9
Externals/cpp-ipc/CMakeLists.txt
vendored
Normal 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)
|
||||||
Loading…
Reference in New Issue
Block a user