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 | include_directories( ${LLVM_MAIN_SRC_DIR}/lib/Target/Mips ${LLVM_BINARY_DIR}/lib/Target/Mips ) add_library(LLVMExegesisMips STATIC Target.cpp ) llvm_update_compile_flags(LLVMExegesisMips) llvm_map_components_to_libnames(libs Mips Exegesis ) target_link_libraries(LLVMExegesisMips ${libs}) set_target_properties(LLVMExegesisMips PROPERTIES FOLDER "Libraries") |