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