mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-21 18:50:47 +03:00
Haiku build fixes
This commit is contained in:
parent
ebbd8f3341
commit
cf03419fb5
1 changed files with 5 additions and 1 deletions
|
@ -68,7 +68,7 @@ option(USE_BUNDLED_BLURHASH "Use the bundled version of blurhash." ON)
|
|||
|
||||
include(CMakeDependentOption)
|
||||
set(VOIP_DEFAULT ON)
|
||||
if(APPLE OR WIN32)
|
||||
if(APPLE OR WIN32 OR HAIKU)
|
||||
set(VOIP_DEFAULT OFF)
|
||||
endif()
|
||||
option(VOIP "Whether to enable voip support. Disable this, if you don't have gstreamer." ${VOIP_DEFAULT})
|
||||
|
@ -914,6 +914,10 @@ if(MSVC)
|
|||
target_link_libraries(nheko PRIVATE ntdll)
|
||||
endif()
|
||||
|
||||
if(HAIKU)
|
||||
target_link_libraries(nheko PRIVATE network)
|
||||
endif()
|
||||
|
||||
if(QML_DEBUGGING)
|
||||
target_compile_definitions(nheko PRIVATE QML_DEBUGGING)
|
||||
endif()
|
||||
|
|
Loading…
Reference in a new issue