xref: /llvm-project/clang/lib/Analysis/plugins/CMakeLists.txt (revision 9d59cfc67eadbe4b4088d70f8bbc61c96568d2f1)
1*9d59cfc6SJameson Nash# Since these do not specify a specific PLUGIN_TOOL (which could be clang or
2*9d59cfc6SJameson Nash# clang-tidy), we cannot compile this unless the platform supports plugins with
3*9d59cfc6SJameson Nash# undefined symbols, and cannot use it unless the user has opted for clang plugins).
4*9d59cfc6SJameson Nashif(CLANG_ENABLE_STATIC_ANALYZER AND CLANG_PLUGIN_SUPPORT AND LLVM_ENABLE_PLUGINS)
5ccbda6b0SDon Hinton  add_subdirectory(SampleAnalyzer)
6ccbda6b0SDon Hinton  add_subdirectory(CheckerDependencyHandling)
7ccbda6b0SDon Hinton  add_subdirectory(CheckerOptionHandling)
8ccbda6b0SDon Hintonendif()
9