From: Aaron Ballman Date: Wed, 7 Jan 2015 14:26:07 +0000 (+0000) Subject: Manually specify the folder that Kaleidescope should reside in for CMake-produced... X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=7b057dbcde13ce0d675866b549ce3b6f9e96fb62;p=oota-llvm.git Manually specify the folder that Kaleidescope should reside in for CMake-produced solutions that care about such things (like MSVC). This takes the Kaleidescope target out of the root solution folder and places it into the Examples folder where it belongs. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@225354 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/examples/Kaleidoscope/CMakeLists.txt b/examples/Kaleidoscope/CMakeLists.txt index 53c724f1a2d..b93cc766231 100644 --- a/examples/Kaleidoscope/CMakeLists.txt +++ b/examples/Kaleidoscope/CMakeLists.txt @@ -1,4 +1,5 @@ add_custom_target(Kaleidoscope) +set_target_properties(Kaleidoscope PROPERTIES FOLDER Examples) macro(add_kaleidoscope_chapter name) add_dependencies(Kaleidoscope ${name})