Meta: Link to libnsl and libsocket on Solaris in Lagom CMakeLists

This commit is contained in:
nipos 2023-02-25 19:10:57 +01:00 committed by Andrew Kaster
parent 72accd3a24
commit d6fd97e8fb

View file

@ -337,6 +337,10 @@ if (${CMAKE_SYSTEM_NAME} MATCHES "NetBSD")
# NetBSD has its shm_open and shm_unlink functions in librt so we need to link that
target_link_libraries(LibCore PRIVATE librt.so)
endif()
if (${CMAKE_SYSTEM_NAME} MATCHES "SunOS")
# Solaris has socket and networking related functions in two extra libraries
target_link_libraries(LibCore PRIVATE nsl socket)
endif()
target_sources(LibCore PRIVATE ${AK_SOURCES})
# LibMain