mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-22 07:32:48 +00:00
27 lines
565 B
CMake
27 lines
565 B
CMake
|
add_executable(tblgen
|
||
|
AsmWriterEmitter.cpp
|
||
|
CallingConvEmitter.cpp
|
||
|
CodeEmitterGen.cpp
|
||
|
CodeGenDAGPatterns.cpp
|
||
|
CodeGenInstruction.cpp
|
||
|
CodeGenTarget.cpp
|
||
|
DAGISelEmitter.cpp
|
||
|
InstrEnumEmitter.cpp
|
||
|
InstrInfoEmitter.cpp
|
||
|
IntrinsicEmitter.cpp
|
||
|
LLVMCConfigurationEmitter.cpp
|
||
|
Record.cpp
|
||
|
RegisterInfoEmitter.cpp
|
||
|
SubtargetEmitter.cpp
|
||
|
TGLexer.cpp
|
||
|
TGParser.cpp
|
||
|
TableGen.cpp
|
||
|
TableGenBackend.cpp
|
||
|
FastISelEmitter.cpp
|
||
|
)
|
||
|
|
||
|
target_link_libraries(tblgen LLVMSupport LLVMSystem)
|
||
|
if( MINGW )
|
||
|
target_link_libraries(tblgen imagehlp psapi)
|
||
|
endif( MINGW )
|