1set(LLVM_LINK_COMPONENTS 2 support 3 BitstreamReader 4 FrontendOpenMP 5 ) 6 7add_clang_library(clangDoc 8 BitcodeReader.cpp 9 BitcodeWriter.cpp 10 ClangDoc.cpp 11 Generators.cpp 12 HTMLGenerator.cpp 13 Mapper.cpp 14 MDGenerator.cpp 15 Representation.cpp 16 Serialize.cpp 17 YAMLGenerator.cpp 18 19 DEPENDS 20 omp_gen 21) 22 23clang_target_link_libraries(clangDoc 24 PRIVATE 25 clangAnalysis 26 clangAST 27 clangASTMatchers 28 clangBasic 29 clangFrontend 30 clangIndex 31 clangLex 32 clangTooling 33 clangToolingCore 34 ) 35 36add_subdirectory(tool) 37