We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72a3e0f commit c57712fCopy full SHA for c57712f
unittests/CppInterOp/CMakeLists.txt
@@ -8,9 +8,9 @@ set(clang_libs
8
9
# function taken from https://github.com/abduld/cena/blob/master/cmake/modules/FindClang.cmake
10
foreach(l ${clang_libs})
11
- find_library(LIB_${l} NAMES ${l} HINTS ${LLVM_LIBRARY_DIRS} )
12
- mark_as_advanced(LIB_${l})
13
- list(APPEND clang_libs ${LIB_${l}})
+ find_library(${l} NAMES ${l} HINTS ${LLVM_LIBRARY_DIRS} )
+ mark_as_advanced(${l})
+ list(APPEND clang_libs ${l})
14
endforeach(l)
15
16
set(${out_libs} ${clang_libs} PARENT_SCOPE)
0 commit comments