From: Duncan P. N. Exon Smith Date: Tue, 6 Jan 2015 23:52:35 +0000 (+0000) Subject: cmake: Fix 'examples' target after r225319 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=a511d71d157ccca5400c07f7160da21ced8d2634;p=oota-llvm.git cmake: Fix 'examples' target after r225319 Add the missing `DEPENDS` keyword. r225319 did almost the right thing (I didn't notice the problem with it because `Kaleidoscope-Ch8` wasn't building at all). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@225321 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/cmake/modules/AddLLVM.cmake b/cmake/modules/AddLLVM.cmake index 517b828991b..3b0090f421b 100644 --- a/cmake/modules/AddLLVM.cmake +++ b/cmake/modules/AddLLVM.cmake @@ -515,7 +515,7 @@ macro(add_llvm_example name) set_target_properties(${name} PROPERTIES FOLDER "Examples") if(NOT TARGET examples) - add_custom_target(examples ${name}) + add_custom_target(examples DEPENDS ${name}) else() add_dependencies(examples ${name}) endif()