aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/Options/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'clang/lib/Options/CMakeLists.txt')
-rw-r--r--clang/lib/Options/CMakeLists.txt18
1 files changed, 18 insertions, 0 deletions
diff --git a/clang/lib/Options/CMakeLists.txt b/clang/lib/Options/CMakeLists.txt
new file mode 100644
index 0000000..a762e99
--- /dev/null
+++ b/clang/lib/Options/CMakeLists.txt
@@ -0,0 +1,18 @@
+set(LLVM_LINK_COMPONENTS
+ Option
+ Support
+)
+
+add_clang_library(clangOptions
+ DriverOptions.cpp
+ OptionUtils.cpp
+
+ DEPENDS
+ ClangDriverOptions
+ # These generated headers are included transitively.
+ target_parser_gen
+
+ LINK_LIBS
+ clangBasic
+ ${system_libs}
+)