blob: 17627fbe9726aadf1ac1956c95da8b68eb1ecf7d [file] [log] [blame]
Clement Courbetac74acd2018-04-04 11:37:06 +00001add_library(LLVMExegesis
2 STATIC
3 BenchmarkResult.cpp
4 BenchmarkRunner.cpp
5 InMemoryAssembler.cpp
6 InstructionSnippetGenerator.cpp
7 Latency.cpp
8 LlvmState.cpp
9 OperandGraph.cpp
10 PerfHelper.cpp
11 Uops.cpp
12 X86.cpp
13 )
14
15llvm_update_compile_flags(LLVMExegesis)
16llvm_map_components_to_libnames(libs
17 CodeGen
18 ExecutionEngine
19 MC
20 MCJIT
21 Support
22 )
23
24target_link_libraries(LLVMExegesis ${libs})
25set_target_properties(LLVMExegesis PROPERTIES FOLDER "Libraries")