llvm/examples: Add RuntimeDyld as libdeps.
[oota-llvm.git] / examples / Kaleidoscope / Chapter7 / CMakeLists.txt
index cdb13c465d14c7e5cda8689ca0a00c0ac3106119..dd181471be1c8b05ea0393f42f01dbde2b2210c9 100644 (file)
@@ -3,16 +3,16 @@ set(LLVM_LINK_COMPONENTS
   Core
   ExecutionEngine
   InstCombine
-  JIT
-  MC
+  MCJIT
+  RuntimeDyld
   ScalarOpts
   Support
   TransformUtils
-  nativecodegen
+  native
   )
 
 set(LLVM_REQUIRES_RTTI 1)
 
-add_llvm_example(Kaleidoscope-Ch7
+add_kaleidoscope_chapter(Kaleidoscope-Ch7
   toy.cpp
   )