diff options
| author | River Riddle <riverriddle@google.com> | 2019-12-05 15:32:59 -0800 |
|---|---|---|
| committer | A. Unique TensorFlower <gardener@tensorflow.org> | 2019-12-05 15:33:33 -0800 |
| commit | 71999ff7f2b23091d06f1306b844038d56c48ae9 (patch) | |
| tree | 34774da64ccad28cea2ce435e2bf661f3058298e | |
| parent | f60bbb6c3b407b25367ce5bc5637b6edaf8c9e16 (diff) | |
| download | bcm5719-llvm-71999ff7f2b23091d06f1306b844038d56c48ae9.tar.gz bcm5719-llvm-71999ff7f2b23091d06f1306b844038d56c48ae9.zip | |
Add include path to the TestDialect to fix broken build.
PiperOrigin-RevId: 284067891
| -rw-r--r-- | mlir/test/lib/IR/CMakeLists.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mlir/test/lib/IR/CMakeLists.txt b/mlir/test/lib/IR/CMakeLists.txt index 9e3b8fbf369..439d3a403b3 100644 --- a/mlir/test/lib/IR/CMakeLists.txt +++ b/mlir/test/lib/IR/CMakeLists.txt @@ -4,6 +4,8 @@ add_llvm_library(MLIRTestIR ADDITIONAL_HEADER_DIRS ) +include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../TestDialect) +include_directories(${CMAKE_CURRENT_BINARY_DIR}/../TestDialect) target_link_libraries(MLIRTestIR MLIRPass ) |

