llvm-project/clang/utils/hmaptool/CMakeLists.txt
John Ericson 32560211c6 Fix one stray {LLVM -> CLANG}_TOOLS_INSTALL_DIR
Follow up to D117977, where I missed this new usage after one rebase.

Thanks @tsteller in https://reviews.llvm.org/D117977#3670919 for
noticing.

Reviewed By: mstorsjo

Differential Revision: https://reviews.llvm.org/D130362
2022-07-23 16:26:32 +00:00

10 lines
366 B
CMake

install(PROGRAMS hmaptool DESTINATION "${CLANG_TOOLS_INSTALL_DIR}" COMPONENT hmaptool)
add_custom_target(hmaptool ALL DEPENDS "hmaptool")
set_target_properties(hmaptool PROPERTIES FOLDER "Utils")
if(NOT LLVM_ENABLE_IDE)
add_llvm_install_targets("install-hmaptool"
DEPENDS hmaptool
COMPONENT hmaptool)
endif()