| set(SOURCES |
| ARCMigrate.cpp |
| BuildSystem.cpp |
| CIndex.cpp |
| CIndexCXX.cpp |
| CIndexCodeCompletion.cpp |
| CIndexDiagnostic.cpp |
| CIndexHigh.cpp |
| CIndexInclusionStack.cpp |
| CIndexUSRs.cpp |
| CIndexer.cpp |
| CXComment.cpp |
| CXCursor.cpp |
| CXIndexDataConsumer.cpp |
| CXCompilationDatabase.cpp |
| CXLoadedDiagnostic.cpp |
| CXSourceLocation.cpp |
| CXStoredDiagnostic.cpp |
| CXString.cpp |
| CXType.cpp |
| Indexing.cpp |
| |
| ADDITIONAL_HEADERS |
| CIndexDiagnostic.h |
| CIndexer.h |
| CXCursor.h |
| CXLoadedDiagnostic.h |
| CXSourceLocation.h |
| CXString.h |
| CXTranslationUnit.h |
| CXType.h |
| Index_Internal.h |
| ../../include/clang-c/Index.h |
| ) |
| |
| set(LIBS |
| clangAST |
| clangBasic |
| clangFrontend |
| clangIndex |
| clangLex |
| clangSema |
| clangTooling |
| ) |
| |
| if (CLANG_ENABLE_ARCMT) |
| list(APPEND LIBS clangARCMigrate) |
| endif () |
| |
| if (TARGET clangTidyPlugin) |
| add_definitions(-DCLANG_TOOL_EXTRA_BUILD) |
| list(APPEND LIBS clangTidyPlugin) |
| list(APPEND LIBS clangIncludeFixerPlugin) |
| if(LLVM_ENABLE_MODULES) |
| list(APPEND LLVM_COMPILE_FLAGS "-fmodules-ignore-macro=CLANG_TOOL_EXTRA_BUILD") |
| endif() |
| endif () |
| |
| find_library(DL_LIBRARY_PATH dl) |
| if (DL_LIBRARY_PATH) |
| list(APPEND LIBS dl) |
| endif() |
| |
| option(LIBCLANG_BUILD_STATIC |
| "Build libclang as a static library (in addition to a shared one)" OFF) |
| |
| set(LLVM_EXPORTED_SYMBOL_FILE ${CMAKE_CURRENT_SOURCE_DIR}/libclang.exports) |
| |
| if(MSVC) |
| # Avoid LNK4197 by not specifying libclang.exports here. |
| # Each functions is exported as "dllexport" in include/clang-c. |
| # KB835326 |
| set(LLVM_EXPORTED_SYMBOL_FILE) |
| endif() |
| |
| if( LLVM_ENABLE_PIC ) |
| set(ENABLE_SHARED SHARED) |
| endif() |
| |
| if((NOT LLVM_ENABLE_PIC OR LIBCLANG_BUILD_STATIC) AND NOT WIN32) |
| set(ENABLE_STATIC STATIC) |
| endif() |
| |
| if(WIN32) |
| set(output_name "libclang") |
| else() |
| set(output_name "clang") |
| endif() |
| |
| add_clang_library(libclang ${ENABLE_SHARED} ${ENABLE_STATIC} |
| OUTPUT_NAME ${output_name} |
| ${SOURCES} |
| DEPENDS clang-headers |
| |
| LINK_LIBS |
| ${LIBS} |
| |
| LINK_COMPONENTS |
| ${LLVM_TARGETS_TO_BUILD} |
| Core |
| Support |
| ) |
| |
| if(ENABLE_SHARED) |
| if(WIN32) |
| set_target_properties(libclang |
| PROPERTIES |
| VERSION ${LIBCLANG_LIBRARY_VERSION} |
| DEFINE_SYMBOL _CINDEX_LIB_) |
| elseif(APPLE) |
| set(LIBCLANG_LINK_FLAGS " -Wl,-compatibility_version -Wl,1") |
| set(LIBCLANG_LINK_FLAGS "${LIBCLANG_LINK_FLAGS} -Wl,-current_version -Wl,${LLVM_VERSION_MAJOR}.${LLVM_VERSION_MINOR}.${LLVM_VERSION_PATCH}") |
| |
| set_property(TARGET libclang APPEND_STRING PROPERTY |
| LINK_FLAGS ${LIBCLANG_LINK_FLAGS}) |
| else() |
| set_target_properties(libclang |
| PROPERTIES |
| VERSION ${LIBCLANG_LIBRARY_VERSION} |
| DEFINE_SYMBOL _CINDEX_LIB_) |
| # FIXME: _CINDEX_LIB_ affects dllexport/dllimport on Win32. |
| if(LLVM_ENABLE_MODULES AND NOT WIN32) |
| target_compile_options(libclang PRIVATE |
| "-fmodules-ignore-macro=_CINDEX_LIB_" |
| ) |
| endif() |
| endif() |
| endif() |
| |
| if(INTERNAL_INSTALL_PREFIX) |
| set(LIBCLANG_HEADERS_INSTALL_DESTINATION "${INTERNAL_INSTALL_PREFIX}/include") |
| else() |
| set(LIBCLANG_HEADERS_INSTALL_DESTINATION include) |
| endif() |
| |
| install(DIRECTORY ../../include/clang-c |
| COMPONENT libclang-headers |
| DESTINATION "${LIBCLANG_HEADERS_INSTALL_DESTINATION}" |
| FILES_MATCHING |
| PATTERN "*.h" |
| PATTERN ".svn" EXCLUDE |
| ) |
| |
| # LLVM_DISTRIBUTION_COMPONENTS requires that each component have both a |
| # component and an install-component target, so add a dummy libclang-headers |
| # target to allow using it in LLVM_DISTRIBUTION_COMPONENTS. |
| add_custom_target(libclang-headers) |
| set_target_properties(libclang-headers PROPERTIES FOLDER "Misc") |
| |
| if (NOT CMAKE_CONFIGURATION_TYPES) # don't add this for IDE's. |
| add_llvm_install_targets(install-libclang-headers |
| COMPONENT libclang-headers) |
| endif() |