mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 06:17:35 +00:00
Meta+Ladybird: Link to libnetwork on Haiku
This commit is contained in:
parent
e345085329
commit
2691c079d4
2 changed files with 8 additions and 0 deletions
|
@ -23,3 +23,7 @@ if (${CMAKE_SYSTEM_NAME} MATCHES "SunOS")
|
||||||
# Solaris has socket and networking related functions in two extra libraries
|
# Solaris has socket and networking related functions in two extra libraries
|
||||||
target_link_libraries(RequestServer PRIVATE nsl socket)
|
target_link_libraries(RequestServer PRIVATE nsl socket)
|
||||||
endif()
|
endif()
|
||||||
|
if (HAIKU)
|
||||||
|
# Haiku has networking related functions in the network library
|
||||||
|
target_link_libraries(RequestServer PRIVATE network)
|
||||||
|
endif()
|
||||||
|
|
|
@ -344,6 +344,10 @@ if (${CMAKE_SYSTEM_NAME} MATCHES "BSD$")
|
||||||
# BSD Platforms have backtrace(3) in a separate library
|
# BSD Platforms have backtrace(3) in a separate library
|
||||||
target_link_libraries(LibCore PRIVATE execinfo)
|
target_link_libraries(LibCore PRIVATE execinfo)
|
||||||
endif()
|
endif()
|
||||||
|
if (HAIKU)
|
||||||
|
# Haiku has networking related functions in the network library
|
||||||
|
target_link_libraries(LibCore PRIVATE network)
|
||||||
|
endif()
|
||||||
target_sources(LibCore PRIVATE ${AK_SOURCES})
|
target_sources(LibCore PRIVATE ${AK_SOURCES})
|
||||||
|
|
||||||
# LibMain
|
# LibMain
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue