From: Oscar Fuentes Date: Wed, 22 Oct 2008 02:52:59 +0000 (+0000) Subject: CMake: use add_llvm_example for HowToUseJIT. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=57bd83be198ee36df82820de56639c19e40aff81;p=oota-llvm.git CMake: use add_llvm_example for HowToUseJIT. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@57944 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/examples/HowToUseJIT/CMakeLists.txt b/examples/HowToUseJIT/CMakeLists.txt index ad7da957697..428b53ffb9b 100644 --- a/examples/HowToUseJIT/CMakeLists.txt +++ b/examples/HowToUseJIT/CMakeLists.txt @@ -1,5 +1,5 @@ set(LLVM_LINK_COMPONENTS jit interpreter nativecodegen) -add_llvm_executable(HowToUseJIT +add_llvm_example(HowToUseJIT HowToUseJIT.cpp )