mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-12-04 12:15:46 +00:00
0621cb2e7d
The rewrite facility's footprint is small so it's not worth going to these lengths to support disabling at configure time, particularly since key compiler features now depend on it. Meanwhile the Objective-C rewriters have been moved under the ENABLE_CLANG_ARCMT umbrella for now as they're comparatively heavy and still potentially worth excluding from lightweight builds. Tests are now passing with any combination of feature flags. The flags historically haven't been tested by LLVM's build servers so caveat emptor. llvm-svn: 213171
24 lines
761 B
CMake
24 lines
761 B
CMake
add_subdirectory(diagtool)
|
|
add_subdirectory(driver)
|
|
add_subdirectory(clang-format)
|
|
add_subdirectory(clang-format-vs)
|
|
|
|
add_subdirectory(c-index-test)
|
|
add_subdirectory(libclang)
|
|
|
|
if(CLANG_ENABLE_ARCMT)
|
|
add_subdirectory(arcmt-test)
|
|
add_subdirectory(c-arcmt-test)
|
|
endif()
|
|
|
|
if(CLANG_ENABLE_STATIC_ANALYZER)
|
|
add_subdirectory(clang-check)
|
|
endif()
|
|
|
|
# We support checking out the clang-tools-extra repository into the 'extra'
|
|
# subdirectory. It contains tools developed as part of the Clang/LLVM project
|
|
# on top of the Clang tooling platform. We keep them in a separate repository
|
|
# to keep the primary Clang repository small and focused.
|
|
# It also may be included by LLVM_EXTERNAL_CLANG_TOOLS_EXTRA_SOURCE_DIR.
|
|
add_llvm_external_project(clang-tools-extra extra)
|