summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Ballman <aaron@aaronballman.com>2015-01-07 14:26:07 +0000
committerAaron Ballman <aaron@aaronballman.com>2015-01-07 14:26:07 +0000
commit7b057dbcde13ce0d675866b549ce3b6f9e96fb62 (patch)
tree1264f2bd223844583ca6ad498870729518a2fd32
parent98f5ce6a353e19bbb4cee2d13d2aa379b6ba2eee (diff)
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
-rw-r--r--examples/Kaleidoscope/CMakeLists.txt1
1 files changed, 1 insertions, 0 deletions
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})