1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 18:54:02 +01:00
llvm-mirror/unittests/Transforms/IPO/CMakeLists.txt
Alex Bradbury aa7e5053d4 [Attributor] Fix build of unittest with DBUILD_SHARED_LIBS=True
The dependencies in llvm/unittests/Transforms/IPO/CMakeLists.txt
introduced in revision 0750757e were incomplete, leading to link errors
for a DBUILD_SHARED_LIBS=True build.
2020-07-15 05:05:31 +01:00

15 lines
191 B
CMake

set(LLVM_LINK_COMPONENTS
Analysis
AsmParser
Core
IPO
Support
TransformUtils
)
add_llvm_unittest(IPOTests
LowerTypeTests.cpp
WholeProgramDevirt.cpp
AttributorTest.cpp
)