diff options
author | b-r-o-c-k <brockmammen@gmail.com> | 2018-06-17 07:54:39 -0500 |
---|---|---|
committer | b-r-o-c-k <brockmammen@gmail.com> | 2018-06-17 07:54:39 -0500 |
commit | 7097aba6be0a1eeaa9fd6ad8bfef556d7d884fd2 (patch) | |
tree | 703a224102f31a520937052528fe5232720d348d /test/includes | |
parent | f39a0f5dd075e19ab693438e0af91f9ccf3bfa4f (diff) | |
download | rneovim-7097aba6be0a1eeaa9fd6ad8bfef556d7d884fd2.tar.gz rneovim-7097aba6be0a1eeaa9fd6ad8bfef556d7d884fd2.tar.bz2 rneovim-7097aba6be0a1eeaa9fd6ad8bfef556d7d884fd2.zip |
cmake: Organize targets into folders
Enabling CMake's USE_FOLDERS option and adding the FOLDER property to
targets allows some IDEs to list the targets in an organized
hierarchy of folders.
Diffstat (limited to 'test/includes')
-rw-r--r-- | test/includes/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/includes/CMakeLists.txt b/test/includes/CMakeLists.txt index 305d3369b7..2846df0e37 100644 --- a/test/includes/CMakeLists.txt +++ b/test/includes/CMakeLists.txt @@ -22,3 +22,4 @@ foreach(hfile ${PRE_HEADERS}) endforeach() add_custom_target(unittest-headers DEPENDS ${POST_HEADERS}) +set_target_properties(unittest-headers PROPERTIES FOLDER test) |