Home | History | Annotate | Download | only in ExecutionEngine
      1 
      2 
      3 add_llvm_library(LLVMExecutionEngine
      4   ExecutionEngine.cpp
      5   ExecutionEngineBindings.cpp
      6   RTDyldMemoryManager.cpp
      7   TargetSelect.cpp
      8   )
      9 
     10 add_subdirectory(Interpreter)
     11 add_subdirectory(JIT)
     12 add_subdirectory(MCJIT)
     13 add_subdirectory(RuntimeDyld)
     14 
     15 if( LLVM_USE_OPROFILE )
     16   add_subdirectory(OProfileJIT)
     17 endif( LLVM_USE_OPROFILE )
     18 
     19 if( LLVM_USE_INTEL_JITEVENTS )
     20   add_subdirectory(IntelJITEvents)
     21 endif( LLVM_USE_INTEL_JITEVENTS )
     22