mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-01-15 16:33:15 -03:00
cpp-ipc: Fix builds on non-FreeBSD BSDs
cpp-ipc is explicitely only available on Windows, Linux, QNX, and FreeBSD. Trying to build dolphin on any another BSD such as OpenBSD or Haiku currently leads to failure because of this.
This commit is contained in:
@@ -786,8 +786,10 @@ endif()
|
||||
|
||||
add_subdirectory(Externals/watcher)
|
||||
|
||||
if(NOT ANDROID AND NOT APPLE)
|
||||
# Any other platform or BSD is currently unsupported by cpp-ipc
|
||||
if(WIN32 OR LINUX OR CMAKE_SYSTEM_NAME STREQUAL "FreeBSD" OR CMAKE_SYSTEM_NAME STREQUAL "QNX")
|
||||
add_subdirectory(Externals/cpp-ipc)
|
||||
add_definitions(-DHAVE_CPPIPC)
|
||||
endif()
|
||||
|
||||
########################################
|
||||
|
||||
Reference in New Issue
Block a user