diff options
Diffstat (limited to 'llvm/tools/llvmc/examples/Skeleton')
-rw-r--r-- | llvm/tools/llvmc/examples/Skeleton/CMakeLists.txt | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/llvm/tools/llvmc/examples/Skeleton/CMakeLists.txt b/llvm/tools/llvmc/examples/Skeleton/CMakeLists.txt new file mode 100644 index 00000000000..e1296ca8148 --- /dev/null +++ b/llvm/tools/llvmc/examples/Skeleton/CMakeLists.txt @@ -0,0 +1,11 @@ +set(LLVM_TARGET_DEFINITIONS AutoGenerated.td) + +tablegen(AutoGenerated.inc -gen-llvmc) + +set(LLVM_USED_LIBS CompilerDriver) +set(LLVM_LINK_COMPONENTS support) + +add_llvm_example(llvmc-skeleton + Hooks.cpp + Main.cpp + ) |