Skip to content
Snippets Groups Projects
Unverified Commit 6d64fe29 authored by Nicolas Werner's avatar Nicolas Werner Committed by GitHub
Browse files

Merge pull request #1618 from Begasus/haiku

Haiku
parents b16b52b4 cf03419f
No related branches found
No related tags found
No related merge requests found
Pipeline #5308 passed
...@@ -69,7 +69,7 @@ option(USE_BUNDLED_BLURHASH "Use the bundled version of blurhash." ON) ...@@ -69,7 +69,7 @@ option(USE_BUNDLED_BLURHASH "Use the bundled version of blurhash." ON)
include(CMakeDependentOption) include(CMakeDependentOption)
set(VOIP_DEFAULT ON) set(VOIP_DEFAULT ON)
if(APPLE OR WIN32) if(APPLE OR WIN32 OR HAIKU)
set(VOIP_DEFAULT OFF) set(VOIP_DEFAULT OFF)
endif() endif()
option(VOIP "Whether to enable voip support. Disable this, if you don't have gstreamer." ${VOIP_DEFAULT}) option(VOIP "Whether to enable voip support. Disable this, if you don't have gstreamer." ${VOIP_DEFAULT})
...@@ -928,6 +928,10 @@ if(MSVC) ...@@ -928,6 +928,10 @@ if(MSVC)
target_link_libraries(nheko PRIVATE ntdll) target_link_libraries(nheko PRIVATE ntdll)
endif() endif()
if(HAIKU)
target_link_libraries(nheko PRIVATE network)
endif()
if(QML_DEBUGGING) if(QML_DEBUGGING)
target_compile_definitions(nheko PRIVATE QML_DEBUGGING) target_compile_definitions(nheko PRIVATE QML_DEBUGGING)
endif() endif()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment