summaryrefslogtreecommitdiff
path: root/source/Symbol
diff options
context:
space:
mode:
authorDimitry Andric <dim@FreeBSD.org>2016-01-06 20:12:03 +0000
committerDimitry Andric <dim@FreeBSD.org>2016-01-06 20:12:03 +0000
commit9e6d35490a6542f9c97607f93c2ef8ca8e03cbcc (patch)
treedd2a1ddf0476664c2b823409c36cbccd52662ca7 /source/Symbol
parent3bd2e91faeb9eeec1aae82c64a3253afff551cfd (diff)
Notes
Diffstat (limited to 'source/Symbol')
-rw-r--r--source/Symbol/CMakeLists.txt36
-rw-r--r--source/Symbol/Makefile14
2 files changed, 50 insertions, 0 deletions
diff --git a/source/Symbol/CMakeLists.txt b/source/Symbol/CMakeLists.txt
new file mode 100644
index 0000000000000..6372fffde1f1e
--- /dev/null
+++ b/source/Symbol/CMakeLists.txt
@@ -0,0 +1,36 @@
+add_lldb_library(lldbSymbol
+ ArmUnwindInfo.cpp
+ Block.cpp
+ ClangASTContext.cpp
+ ClangASTImporter.cpp
+ ClangExternalASTSourceCallbacks.cpp
+ ClangExternalASTSourceCommon.cpp
+ CompilerDecl.cpp
+ CompilerDeclContext.cpp
+ CompilerType.cpp
+ CompileUnit.cpp
+ CompactUnwindInfo.cpp
+ DebugMacros.cpp
+ Declaration.cpp
+ DWARFCallFrameInfo.cpp
+ Function.cpp
+ FuncUnwinders.cpp
+ GoASTContext.cpp
+ LineEntry.cpp
+ LineTable.cpp
+ ObjectFile.cpp
+ Symbol.cpp
+ SymbolContext.cpp
+ SymbolFile.cpp
+ SymbolVendor.cpp
+ Symtab.cpp
+ Type.cpp
+ TypeList.cpp
+ TypeMap.cpp
+ TypeSystem.cpp
+ UnwindPlan.cpp
+ UnwindTable.cpp
+ Variable.cpp
+ VariableList.cpp
+ VerifyDecl.cpp
+ )
diff --git a/source/Symbol/Makefile b/source/Symbol/Makefile
new file mode 100644
index 0000000000000..ae0cef0e242aa
--- /dev/null
+++ b/source/Symbol/Makefile
@@ -0,0 +1,14 @@
+##===- source/Symbol/Makefile ------------------------------*- Makefile -*-===##
+#
+# The LLVM Compiler Infrastructure
+#
+# This file is distributed under the University of Illinois Open Source
+# License. See LICENSE.TXT for details.
+#
+##===----------------------------------------------------------------------===##
+
+LLDB_LEVEL := ../..
+LIBRARYNAME := lldbSymbol
+BUILD_ARCHIVE = 1
+
+include $(LLDB_LEVEL)/Makefile