reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | include_directories( ${LLVM_MAIN_SRC_DIR}/tools/llvm-exegesis/lib ) set(LLVM_LINK_COMPONENTS MC MCParser Object Support Symbolize ) add_llvm_unittest(LLVMExegesisTests BenchmarkRunnerTest.cpp ClusteringTest.cpp PerfHelperTest.cpp RegisterValueTest.cpp ) target_link_libraries(LLVMExegesisTests PRIVATE LLVMExegesis) if(LLVM_TARGETS_TO_BUILD MATCHES "X86") add_subdirectory(X86) endif() if(LLVM_TARGETS_TO_BUILD MATCHES "ARM") add_subdirectory(ARM) endif() if(LLVM_TARGETS_TO_BUILD MATCHES "AArch64") add_subdirectory(AArch64) endif() if(LLVM_TARGETS_TO_BUILD MATCHES "PowerPC") add_subdirectory(PowerPC) endif() if(LLVM_TARGETS_TO_BUILD MATCHES "Mips") add_subdirectory(Mips) endif() |