This is a followup to https://github.com/llvm/llvm-project/pull/119408, which switches unit test binaries to also use mlir_target_link_libraries() where necessary. This allows them to link against against the MLIR dylib.
10 lines
169 B
CMake
10 lines
169 B
CMake
add_mlir_unittest(MLIRBytecodeTests
|
|
BytecodeTest.cpp
|
|
)
|
|
mlir_target_link_libraries(MLIRBytecodeTests
|
|
PRIVATE
|
|
MLIRBytecodeReader
|
|
MLIRBytecodeWriter
|
|
MLIRParser
|
|
)
|