Clement Courbet | ac74acd | 2018-04-04 11:37:06 +0000 | [diff] [blame] | 1 | add_library(LLVMExegesis |
| 2 | STATIC |
| 3 | BenchmarkResult.cpp |
| 4 | BenchmarkRunner.cpp |
Clement Courbet | 9671541 | 2018-05-07 09:09:48 +0000 | [diff] [blame] | 5 | Clustering.cpp |
Clement Courbet | ac74acd | 2018-04-04 11:37:06 +0000 | [diff] [blame] | 6 | InMemoryAssembler.cpp |
| 7 | InstructionSnippetGenerator.cpp |
| 8 | Latency.cpp |
| 9 | LlvmState.cpp |
| 10 | OperandGraph.cpp |
| 11 | PerfHelper.cpp |
| 12 | Uops.cpp |
| 13 | X86.cpp |
| 14 | ) |
| 15 | |
| 16 | llvm_update_compile_flags(LLVMExegesis) |
| 17 | llvm_map_components_to_libnames(libs |
Clement Courbet | 908dd38 | 2018-04-04 12:58:41 +0000 | [diff] [blame] | 18 | Analysis |
Clement Courbet | ac74acd | 2018-04-04 11:37:06 +0000 | [diff] [blame] | 19 | CodeGen |
Clement Courbet | 908dd38 | 2018-04-04 12:58:41 +0000 | [diff] [blame] | 20 | Core |
Clement Courbet | ac74acd | 2018-04-04 11:37:06 +0000 | [diff] [blame] | 21 | ExecutionEngine |
Clement Courbet | 559d1e3 | 2018-05-15 07:40:21 +0000 | [diff] [blame^] | 22 | GlobalISel |
Clement Courbet | ac74acd | 2018-04-04 11:37:06 +0000 | [diff] [blame] | 23 | MC |
| 24 | MCJIT |
Clement Courbet | 908dd38 | 2018-04-04 12:58:41 +0000 | [diff] [blame] | 25 | Object |
Clement Courbet | ac74acd | 2018-04-04 11:37:06 +0000 | [diff] [blame] | 26 | Support |
| 27 | ) |
| 28 | |
| 29 | target_link_libraries(LLVMExegesis ${libs}) |
| 30 | set_target_properties(LLVMExegesis PROPERTIES FOLDER "Libraries") |