aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristophe Giboudeaux <christophe@krop.fr>2019-11-11 23:06:27 +0100
committerChristophe Giboudeaux <christophe@krop.fr>2019-11-11 23:06:27 +0100
commitc6b4e029ddec792de96050d0fa76c5b2e900e252 (patch)
tree7c208e78858b53e65c8e55d4663f3b74574f15ef
parent0e295e5a926496f5a5d46ea4feb1b285b084f5e0 (diff)
Coding style
GIT_SILENT
-rw-r--r--CMakeLists.txt14
1 files changed, 7 insertions, 7 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index ce1f8875..f1463cfe 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -126,13 +126,13 @@ macro(link_to_llvm name is_standalone)
target_link_libraries(${name} version.lib)
endif()
# clang >= 9.0 can provide a single shared library instead of split ones
- if(CLANG_CLANG-CPP_LIB)
- target_link_libraries(${name} clang-cpp)
- else()
- target_link_libraries(${name} clangTooling)
- target_link_libraries(${name} clangToolingCore)
- target_link_libraries(${name} ${clang_tooling_refactoring_lib})
- endif()
+ if(CLANG_CLANG-CPP_LIB)
+ target_link_libraries(${name} clang-cpp)
+ else()
+ target_link_libraries(${name} clangTooling)
+ target_link_libraries(${name} clangToolingCore)
+ target_link_libraries(${name} ${clang_tooling_refactoring_lib})
+ endif()
endmacro()
macro(add_clang_plugin name)