You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
355 B
24 lines
355 B
set(LLVM_LINK_COMPONENTS
|
|
Support
|
|
)
|
|
|
|
add_clang_executable(diagtool
|
|
diagtool_main.cpp
|
|
DiagTool.cpp
|
|
DiagnosticNames.cpp
|
|
ListWarnings.cpp
|
|
ShowEnabledWarnings.cpp
|
|
TreeView.cpp
|
|
)
|
|
|
|
target_link_libraries(diagtool
|
|
clangBasic
|
|
clangFrontend
|
|
)
|
|
|
|
if(UNIX)
|
|
set(CLANGXX_LINK_OR_COPY create_symlink)
|
|
else()
|
|
set(CLANGXX_LINK_OR_COPY copy)
|
|
endif()
|