forked from OSchip/llvm-project
32 lines
545 B
CMake
32 lines
545 B
CMake
set(LLVM_LINK_COMPONENTS
|
|
Support
|
|
)
|
|
|
|
add_clang_executable(diagtool
|
|
diagtool_main.cpp
|
|
DiagTool.cpp
|
|
DiagnosticNames.cpp
|
|
FindDiagnosticID.cpp
|
|
ListWarnings.cpp
|
|
ShowEnabledWarnings.cpp
|
|
TreeView.cpp
|
|
)
|
|
|
|
target_link_libraries(diagtool
|
|
PRIVATE
|
|
clangBasic
|
|
clangFrontend
|
|
)
|
|
|
|
if (NOT LLVM_INSTALL_TOOLCHAIN_ONLY)
|
|
install(TARGETS diagtool
|
|
COMPONENT diagtool
|
|
RUNTIME DESTINATION bin)
|
|
|
|
if (NOT LLVM_ENABLE_IDE)
|
|
add_llvm_install_targets(install-diagtool
|
|
DEPENDS diagtool
|
|
COMPONENT diagtool)
|
|
endif()
|
|
endif()
|