mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-12-04 03:44:59 +00:00
a52aea0ba6
This cleans up several CMakeLists.txt's where -Wno-suggest-override was manually specified. These test targets now inherit this flag from the gtest target. Some unittests CMakeLists.txt's, in particular Flang and LLDB, are not touched by this patch. Flang manually adds the gtest sources itself in some configurations, rather than linking to LLVM's gtest target, so this fix would be insufficient to cover those cases. Similarly, LLDB has subdirectories that manually add the gtest headers to their include path without linking to the gtest target, so those subdirectories still need -Wno-suggest-override to be manually specified to compile without warnings. Differential Revision: https://reviews.llvm.org/D84554
15 lines
481 B
CMake
15 lines
481 B
CMake
add_custom_target(ExtraToolsUnitTests)
|
|
set_target_properties(ExtraToolsUnitTests PROPERTIES FOLDER "Extra Tools Unit Tests")
|
|
|
|
function(add_extra_unittest test_dirname)
|
|
add_unittest(ExtraToolsUnitTests ${test_dirname} ${ARGN})
|
|
endfunction()
|
|
|
|
add_subdirectory(clang-apply-replacements)
|
|
add_subdirectory(clang-change-namespace)
|
|
add_subdirectory(clang-doc)
|
|
add_subdirectory(clang-include-fixer)
|
|
add_subdirectory(clang-move)
|
|
add_subdirectory(clang-query)
|
|
add_subdirectory(clang-tidy)
|