1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 12:17:44 +00:00

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 # NetBSD has its shm_open and shm_unlink functions in librt so we need to link that
target_link_libraries(LibCore PRIVATE librt.so) target_link_libraries(LibCore PRIVATE librt.so)
endif() 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}) target_sources(LibCore PRIVATE ${AK_SOURCES})
# LibMain # LibMain