forked from OSchip/llvm-project
[CMake] Apply ADDITIONAL_HEADERS introduced in r199639.
llvm-svn: 199640
This commit is contained in:
parent
6acf320a99
commit
bf6d1efbba
|
@ -4,8 +4,10 @@ set(LLVM_LINK_COMPONENTS
|
|||
|
||||
add_clang_library(clangIndex
|
||||
CommentToXML.cpp
|
||||
SimpleFormatContext.h
|
||||
USRGeneration.cpp
|
||||
|
||||
ADDITIONAL_HEADERS
|
||||
SimpleFormatContext.h
|
||||
)
|
||||
|
||||
target_link_libraries(clangIndex
|
||||
|
|
|
@ -5,8 +5,6 @@ set(LLVM_LINK_COMPONENTS
|
|||
|
||||
|
||||
add_clang_library(clangSerialization
|
||||
ASTCommon.h
|
||||
ASTReaderInternals.h
|
||||
ASTCommon.cpp
|
||||
ASTReader.cpp
|
||||
ASTReaderDecl.cpp
|
||||
|
@ -18,6 +16,10 @@ add_clang_library(clangSerialization
|
|||
GlobalModuleIndex.cpp
|
||||
Module.cpp
|
||||
ModuleManager.cpp
|
||||
|
||||
ADDITIONAL_HEADERS
|
||||
ASTCommon.h
|
||||
ASTReaderInternals.h
|
||||
)
|
||||
|
||||
add_dependencies(clangSerialization
|
||||
|
|
|
@ -9,32 +9,34 @@ set(SOURCES
|
|||
CIndexCXX.cpp
|
||||
CIndexCodeCompletion.cpp
|
||||
CIndexDiagnostic.cpp
|
||||
CIndexDiagnostic.h
|
||||
CIndexHigh.cpp
|
||||
CIndexInclusionStack.cpp
|
||||
CIndexUSRs.cpp
|
||||
CIndexer.cpp
|
||||
CIndexer.h
|
||||
CXComment.cpp
|
||||
CXCursor.cpp
|
||||
CXCursor.h
|
||||
CXCompilationDatabase.cpp
|
||||
CXLoadedDiagnostic.cpp
|
||||
CXLoadedDiagnostic.h
|
||||
CXSourceLocation.cpp
|
||||
CXSourceLocation.h
|
||||
CXStoredDiagnostic.cpp
|
||||
CXString.cpp
|
||||
CXString.h
|
||||
CXTranslationUnit.h
|
||||
CXType.cpp
|
||||
CXType.h
|
||||
IndexBody.cpp
|
||||
IndexDecl.cpp
|
||||
IndexTypeSourceInfo.cpp
|
||||
Index_Internal.h
|
||||
Indexing.cpp
|
||||
IndexingContext.cpp
|
||||
|
||||
ADDITIONAL_HEADERS
|
||||
CIndexDiagnostic.h
|
||||
CIndexer.h
|
||||
CXCursor.h
|
||||
CXLoadedDiagnostic.h
|
||||
CXSourceLocation.h
|
||||
CXString.h
|
||||
CXTranslationUnit.h
|
||||
CXType.h
|
||||
Index_Internal.h
|
||||
IndexingContext.h
|
||||
../../include/clang-c/Index.h
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue