38 lines · plain
1add_llvm_exegesis_unittest_includes(2 ${LLVM_MAIN_SRC_DIR}/lib/Target/X863 ${LLVM_BINARY_DIR}/lib/Target/X864 ${LLVM_MAIN_SRC_DIR}/tools/llvm-exegesis/lib5 )6 7add_llvm_exegesis_unittest_sources(8 BenchmarkResultTest.cpp9 RegisterAliasingTest.cpp10 SchedClassResolutionTest.cpp11 SnippetFileTest.cpp12 SnippetGeneratorTest.cpp13 SnippetRepetitorTest.cpp14 SubprocessMemoryTest.cpp15 TargetTest.cpp16 )17 18add_llvm_exegesis_unittest_link_components(19 Core20 Codegen21 MC22 MCParser23 Object24 Support25 Symbolize26 X8627 )28 29set(libs)30if(HAVE_LIBRT)31 list(APPEND libs rt)32endif()33 34add_llvm_exegesis_unittest_link_libraries(35 LLVMExegesisX8636 ${libs}37 )38