Skip to content

Commit c57712f

Browse files
authored
Update CMakeLists.txt
1 parent 72a3e0f commit c57712f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

unittests/CppInterOp/CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ set(clang_libs
88

99
# function taken from https://github.com/abduld/cena/blob/master/cmake/modules/FindClang.cmake
1010
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}})
11+
find_library(${l} NAMES ${l} HINTS ${LLVM_LIBRARY_DIRS} )
12+
mark_as_advanced(${l})
13+
list(APPEND clang_libs ${l})
1414
endforeach(l)
1515

1616
set(${out_libs} ${clang_libs} PARENT_SCOPE)

0 commit comments

Comments
 (0)