aboutsummaryrefslogtreecommitdiffstats
path: root/tools/macho-dump/CMakeLists.txt
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2010-11-27 05:58:44 +0000
committerDaniel Dunbar <daniel@zuster.org>2010-11-27 05:58:44 +0000
commit75373ac0c3cd299cfb45514d5bc0bc0761233fdd (patch)
tree31912468add3e0d4af96767a4053b8f1d67f78c3 /tools/macho-dump/CMakeLists.txt
parentfbd25b7d1d030ca0cbea28c690b636c35299826e (diff)
downloadexternal_llvm-75373ac0c3cd299cfb45514d5bc0bc0761233fdd.zip
external_llvm-75373ac0c3cd299cfb45514d5bc0bc0761233fdd.tar.gz
external_llvm-75373ac0c3cd299cfb45514d5bc0bc0761233fdd.tar.bz2
macho-dump: Stub out C++ macho-dump tool.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@120191 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/macho-dump/CMakeLists.txt')
-rw-r--r--tools/macho-dump/CMakeLists.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/macho-dump/CMakeLists.txt b/tools/macho-dump/CMakeLists.txt
new file mode 100644
index 0000000..9ade5ea
--- /dev/null
+++ b/tools/macho-dump/CMakeLists.txt
@@ -0,0 +1,5 @@
+set(LLVM_LINK_COMPONENTS ${LLVM_TARGETS_TO_BUILD} support object)
+
+add_llvm_tool(macho-dumpx
+ macho-dump.cpp
+ )