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