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 c53c6a1 commit cd64a0bCopy full SHA for cd64a0b
unittests/CppInterOp/CMakeLists.txt
@@ -2,18 +2,11 @@ set(LLVM_LINK_COMPONENTS
2
Support
3
)
4
5
-add_llvm_library(CppInterOpTests
6
- DISABLE_LLVM_LINK_LLVM_DYLIB
7
- CUDATest.cpp
8
- EnumReflectionTest.cpp
9
- FunctionReflectionTest.cpp
10
- InterpreterTest.cpp
11
- JitTest.cpp
12
- ScopeReflectionTest.cpp
13
- TypeReflectionTest.cpp
14
- Utils.cpp
15
- VariableReflectionTest.cpp
16
- )
+llvm_map_components_to_libnames(
+ llvm_libs
+ Support
+)
+
17
add_cppinterop_unittest(CppInterOpTests
18
CUDATest.cpp
19
EnumReflectionTest.cpp
@@ -28,7 +21,7 @@ add_cppinterop_unittest(CppInterOpTests
28
21
29
22
target_link_libraries(CppInterOpTests
30
23
PRIVATE
31
- clangCppInterOp
24
+ clangCppInterOp ${llvm_libs}
32
25
33
26
34
27
set_output_directory(CppInterOpTests
0 commit comments