summaryrefslogtreecommitdiff
path: root/lib/FrontendTool
diff options
context:
space:
mode:
authorDimitry Andric <dim@FreeBSD.org>2019-08-20 17:59:23 +0000
committerDimitry Andric <dim@FreeBSD.org>2019-08-20 17:59:23 +0000
commit9a83721404652cea39e9f02ae3e3b5c964602a5c (patch)
tree23e9541ce27049a103f6ed046be61592123e02c9 /lib/FrontendTool
parent676fbe8105eeb6ff4bb2ed261cb212fcfdbe7b63 (diff)
Notes
Diffstat (limited to 'lib/FrontendTool')
-rw-r--r--lib/FrontendTool/CMakeLists.txt34
1 files changed, 0 insertions, 34 deletions
diff --git a/lib/FrontendTool/CMakeLists.txt b/lib/FrontendTool/CMakeLists.txt
deleted file mode 100644
index 7e11be0ce4c58..0000000000000
--- a/lib/FrontendTool/CMakeLists.txt
+++ /dev/null
@@ -1,34 +0,0 @@
-set(LLVM_LINK_COMPONENTS
- Option
- Support
- )
-
-set(link_libs
- clangBasic
- clangCodeGen
- clangDriver
- clangFrontend
- clangRewriteFrontend
- )
-
-if(CLANG_ENABLE_ARCMT)
- list(APPEND link_libs
- clangARCMigrate
- )
-endif()
-
-if(CLANG_ENABLE_STATIC_ANALYZER)
- list(APPEND link_libs
- clangStaticAnalyzerFrontend
- )
-endif()
-
-add_clang_library(clangFrontendTool
- ExecuteCompilerInvocation.cpp
-
- DEPENDS
- ClangDriverOptions
-
- LINK_LIBS
- ${link_libs}
- )