diff options
Diffstat (limited to 'llvm/cmake/modules/TableGen.cmake')
-rw-r--r-- | llvm/cmake/modules/TableGen.cmake | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/llvm/cmake/modules/TableGen.cmake b/llvm/cmake/modules/TableGen.cmake index 71dfebb12b4..38e755d6d15 100644 --- a/llvm/cmake/modules/TableGen.cmake +++ b/llvm/cmake/modules/TableGen.cmake @@ -171,7 +171,13 @@ macro(add_tablegen target project) install(TARGETS ${target} ${export_to_llvmexports} + COMPONENT ${target} RUNTIME DESTINATION ${LLVM_TOOLS_INSTALL_DIR}) + if(NOT LLVM_ENABLE_IDE) + add_llvm_install_targets("install-${target}" + DEPENDS ${target} + COMPONENT ${target}) + endif() endif() set_property(GLOBAL APPEND PROPERTY LLVM_EXPORTS ${target}) endmacro() |