diff options
Diffstat (limited to 'llvm/lib/LibDriver/CMakeLists.txt')
-rw-r--r-- | llvm/lib/LibDriver/CMakeLists.txt | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/llvm/lib/LibDriver/CMakeLists.txt b/llvm/lib/LibDriver/CMakeLists.txt new file mode 100644 index 00000000000..ab53a684344 --- /dev/null +++ b/llvm/lib/LibDriver/CMakeLists.txt @@ -0,0 +1,8 @@ +set(LLVM_TARGET_DEFINITIONS Options.td) +tablegen(LLVM Options.inc -gen-opt-parser-defs) +add_public_tablegen_target(LibOptionsTableGen) + +add_llvm_library(LLVMLibDriver + LibDriver.cpp + ) +add_dependencies(LLVMLibDriver LibOptionsTableGen) |