Files
clang-p2996/mlir/tools/mlir-parser-fuzzer/bytecode/CMakeLists.txt
Jacques Pienaar 2c4e073dfb [mlir] Split parser fuzzer for bytecode & text
Enable fuzzing these independently. Currently still not linking in
dialects beyond Builtin.
2022-10-29 05:42:28 -07:00

16 lines
262 B
CMake

set(LLVM_LINK_COMPONENTS
FuzzerCLI
Support
)
add_llvm_fuzzer(mlir-bytecode-parser-fuzzer
mlir-bytecode-parser-fuzzer.cpp
DUMMY_MAIN DummyParserFuzzer.cpp
)
target_link_libraries(mlir-bytecode-parser-fuzzer
PUBLIC
MLIRIR
MLIRParser
MLIRSupport
)