17 lines · plain
1if (LLVM_INCLUDE_UTILS AND LLVM_INCLUDE_TOOLS)2 add_custom_command(3 OUTPUT ${LLVM_TOOLS_BINARY_DIR}/llvm-locstats4 DEPENDS ${LLVM_MAIN_SRC_DIR}/utils/llvm-locstats/llvm-locstats.py5 DEPENDS llvm-dwarfdump6 COMMAND ${CMAKE_COMMAND} -E copy ${LLVM_MAIN_SRC_DIR}/utils/llvm-locstats/llvm-locstats.py ${LLVM_TOOLS_BINARY_DIR}/llvm-locstats7 COMMENT "Copying llvm-locstats into ${LLVM_TOOLS_BINARY_DIR}"8 )9 add_custom_target(llvm-locstats ALL10 DEPENDS ${LLVM_TOOLS_BINARY_DIR}/llvm-locstats11 )12 if (NOT LLVM_BUILD_TOOLS)13 set_target_properties(llvm-locstats PROPERTIES EXCLUDE_FROM_ALL ON)14 endif()15 set_target_properties(llvm-locstats PROPERTIES FOLDER "LLVM/Tools")16endif()17