From 7097aba6be0a1eeaa9fd6ad8bfef556d7d884fd2 Mon Sep 17 00:00:00 2001 From: b-r-o-c-k Date: Sun, 17 Jun 2018 07:54:39 -0500 Subject: 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. --- test/includes/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) (limited to 'test/includes') 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) -- cgit