mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-21 15:15:07 +00:00
Fix FreeBSD build with -DUSE_SHARED_LLVM=off
This commit is contained in:
parent
aa9cdad54f
commit
d3536831c3
@ -114,6 +114,8 @@ find_package(Threads REQUIRED)
|
||||
target_link_libraries(ccls PRIVATE Threads::Threads)
|
||||
|
||||
if(${CMAKE_SYSTEM_NAME} STREQUAL FreeBSD)
|
||||
find_package(Backtrace REQUIRED)
|
||||
target_link_libraries(ccls PRIVATE ${Backtrace_LIBRARIES})
|
||||
# src/platform_posix.cc uses libthr
|
||||
target_link_libraries(ccls PRIVATE thr)
|
||||
endif()
|
||||
|
Loading…
Reference in New Issue
Block a user