blob: 0db41346911d5c365f860806ef4da8913da44587 [file] [log] [blame]
Peter Collingbourne84c287e2011-10-01 16:41:13 +00001## FIXME: This only requires RTTI because tblgen uses it. Fix that.
2set(LLVM_REQUIRES_RTTI 1)
3set(LLVM_REQUIRES_EH 1)
4
5add_llvm_library(LLVMTableGen
6 Error.cpp
7 Main.cpp
8 Record.cpp
9 TableGenBackend.cpp
10 TGLexer.cpp
11 TGParser.cpp
12 )
13
14add_llvm_library_dependencies(LLVMTableGen
15 LLVMSupport
16 )