mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 10:42:39 +01:00
04288c68df
Instead use target_link_libraries directly. Thanks to Juergen Ributzka for the suggestion, which fixes an issue when llvm is configured with no targets. llvm-svn: 305421
14 lines
283 B
CMake
14 lines
283 B
CMake
set(LLVM_LINK_COMPONENTS
|
|
DebugInfoCodeView
|
|
)
|
|
|
|
set(DebugInfoCodeViewSources
|
|
RandomAccessVisitorTest.cpp
|
|
TypeIndexDiscoveryTest.cpp
|
|
)
|
|
|
|
add_llvm_unittest(DebugInfoCodeViewTests
|
|
${DebugInfoCodeViewSources}
|
|
)
|
|
|
|
target_link_libraries(DebugInfoCodeViewTests LLVMTestingSupport) |