Merge pull request #14255 from JoshuaVandaele/bsd-fix

cpp-ipc: Fix builds on non-FreeBSD BSDs
This commit is contained in:
JMC47
2026-01-11 16:27:29 -05:00
committed by GitHub
5 changed files with 8 additions and 5 deletions

View File

@@ -773,8 +773,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()
########################################