cdb13c465d14c7e5cda8689ca0a00c0ac3106119
[oota-llvm.git] / examples / Kaleidoscope / Chapter7 / CMakeLists.txt
1 set(LLVM_LINK_COMPONENTS
2   Analysis
3   Core
4   ExecutionEngine
5   InstCombine
6   JIT
7   MC
8   ScalarOpts
9   Support
10   TransformUtils
11   nativecodegen
12   )
13
14 set(LLVM_REQUIRES_RTTI 1)
15
16 add_llvm_example(Kaleidoscope-Ch7
17   toy.cpp
18   )