diff options
author | Oscar Fuentes <ofv@wanadoo.es> | 2008-09-22 01:08:49 +0000 |
---|---|---|
committer | Oscar Fuentes <ofv@wanadoo.es> | 2008-09-22 01:08:49 +0000 |
commit | a229b3c9a78a54d73b9188f729f6dc4a0412ca0b (patch) | |
tree | 5ee5be099522e12eb686deb47734dc1cd6469606 /llvm/tools/llvm-as | |
parent | 91ef8fcd29e6baff721dabc494e65a5eabade386 (diff) | |
download | bcm5719-llvm-a229b3c9a78a54d73b9188f729f6dc4a0412ca0b.tar.gz bcm5719-llvm-a229b3c9a78a54d73b9188f729f6dc4a0412ca0b.zip |
Initial support for the CMake build system.
llvm-svn: 56419
Diffstat (limited to 'llvm/tools/llvm-as')
-rw-r--r-- | llvm/tools/llvm-as/CMakeLists.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/llvm/tools/llvm-as/CMakeLists.txt b/llvm/tools/llvm-as/CMakeLists.txt new file mode 100644 index 00000000000..eef4a13e29d --- /dev/null +++ b/llvm/tools/llvm-as/CMakeLists.txt @@ -0,0 +1,6 @@ +set(LLVM_LINK_COMPONENTS asmparser bitwriter) +set(LLVM_REQUIRES_EH 1) + +add_llvm_tool(llvm-as + llvm-as.cpp + ) |