diff options
| author | Etienne Bergeron <etienneb@google.com> | 2016-07-11 21:51:56 +0000 |
|---|---|---|
| committer | Etienne Bergeron <etienneb@google.com> | 2016-07-11 21:51:56 +0000 |
| commit | ab42f4ddba2a682265d6aa8a5341d2b2251e5616 (patch) | |
| tree | 9c6232595d9e5f56ccb9e82f74d762d75b0d5e5e /compiler-rt/lib/stats | |
| parent | dbeaea7b357fb4343d01ffa466f3dcab1e57d392 (diff) | |
| download | bcm5719-llvm-ab42f4ddba2a682265d6aa8a5341d2b2251e5616.tar.gz bcm5719-llvm-ab42f4ddba2a682265d6aa8a5341d2b2251e5616.zip | |
[compiler-rt] Fix VisualStudio virtual folders layout
Summary:
This patch is a refactoring of the way cmake 'targets' are grouped.
It won't affect non-UI cmake-generators.
Clang/LLVM are using a structured way to group targets which ease
navigation through Visual Studio UI. The Compiler-RT projects
differ from the way Clang/LLVM are grouping targets.
This patch doesn't contain behavior changes.
Reviewers: kubabrecka, rnk
Subscribers: wang0109, llvm-commits, kubabrecka, chrisha
Differential Revision: http://reviews.llvm.org/D21952
llvm-svn: 275111
Diffstat (limited to 'compiler-rt/lib/stats')
| -rw-r--r-- | compiler-rt/lib/stats/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler-rt/lib/stats/CMakeLists.txt b/compiler-rt/lib/stats/CMakeLists.txt index 086ee090a18..33ab1aea685 100644 --- a/compiler-rt/lib/stats/CMakeLists.txt +++ b/compiler-rt/lib/stats/CMakeLists.txt @@ -1,6 +1,7 @@ include_directories(..) add_custom_target(stats) +set_target_properties(stats PROPERTIES FOLDER "Compiler-RT Misc") if(APPLE) set(STATS_LIB_FLAVOR SHARED) |

