diff options
author | Dylan Noblesmith <nobled@dreamwidth.org> | 2012-02-13 12:32:15 +0000 |
---|---|---|
committer | Dylan Noblesmith <nobled@dreamwidth.org> | 2012-02-13 12:32:15 +0000 |
commit | 89446751f1c05e18f50560b8dbecb384ed32e2f2 (patch) | |
tree | daf366cd9453b3c807c5f17fdda6e568cfb65340 /examples/CMakeLists.txt | |
parent | 4ee01ef7bd170b6f3f3f71882b407cd6408c5b1e (diff) |
examples/analyzer-plugin: hook up to build
This was never being compiled at all and was bitrotting
as a result.
Also compile SampleAnalyzerPlugin as a module, not a library,
and fix a mistake with not passing the source files
to add_clang_library().
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@150378 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'examples/CMakeLists.txt')
-rw-r--r-- | examples/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt index 7f4253af2e..19d886935d 100644 --- a/examples/CMakeLists.txt +++ b/examples/CMakeLists.txt @@ -2,5 +2,6 @@ if(NOT CLANG_BUILD_EXAMPLES) set(EXCLUDE_FROM_ALL ON) endif() +add_subdirectory(analyzer-plugin) add_subdirectory(clang-interpreter) add_subdirectory(PrintFunctionNames) |