From 5f16129409615e93e89a732a42fe045a3781d43a Mon Sep 17 00:00:00 2001 From: DragonBillow <42114817+cathaysia@users.noreply.github.com> Date: Wed, 1 Dec 2021 14:51:37 +0800 Subject: [PATCH] feat: Add option CLANG_LINK_DYLIB for static build --- CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6b52b48e..220867f0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -71,7 +71,8 @@ endif() find_package(Clang REQUIRED) -if(CLANG_LINK_CLANG_DYLIB) +option(CLANG_LINK_DYLIB ${CLANG_LINK_CLANG_DYLIB}) +if(CLANG_LINK_DYLIB) target_link_libraries(ccls PRIVATE clang-cpp) else() target_link_libraries(ccls PRIVATE