@@ -91,7 +91,7 @@ function(add_compiler_rt_object_libraries name)
9191 ${extra_cflags_${libname} } ${target_flags} )
9292 set_property (TARGET ${libname} APPEND PROPERTY
9393 COMPILE_DEFINITIONS ${LIB_DEFS} )
94- set_target_properties (${libname} PROPERTIES FOLDER "Compiler-RT Libraries" )
94+ set_target_properties (${libname} PROPERTIES FOLDER "Compiler-RT/ Libraries" )
9595 if (APPLE )
9696 set_target_properties (${libname} PROPERTIES
9797 OSX_ARCHITECTURES "${LIB_ARCHS_${libname} }" )
@@ -110,7 +110,7 @@ endmacro()
110110
111111function (add_compiler_rt_component name )
112112 add_custom_target (${name} )
113- set_target_properties (${name} PROPERTIES FOLDER "Compiler-RT Misc " )
113+ set_target_properties (${name} PROPERTIES FOLDER "Compiler-RT/Components " )
114114 if (COMMAND runtime_register_component)
115115 runtime_register_component(${name} )
116116 endif ()
@@ -293,7 +293,7 @@ function(add_compiler_rt_runtime name type)
293293 if (NOT TARGET ${LIB_PARENT_TARGET} )
294294 add_custom_target (${LIB_PARENT_TARGET} )
295295 set_target_properties (${LIB_PARENT_TARGET} PROPERTIES
296- FOLDER "Compiler-RT Misc " )
296+ FOLDER "Compiler-RT/Runtimes " )
297297 endif ()
298298 endif ()
299299
@@ -348,6 +348,7 @@ function(add_compiler_rt_runtime name type)
348348 DEPENDS ${sources_${libname} }
349349 COMMENT "Building C object ${output_file_${libname} }" )
350350 add_custom_target (${libname} DEPENDS ${output_dir_${libname} }/${output_file_${libname} })
351+ set_target_properties (${libname} PROPERTIES FOLDER "Compiler-RT/Codegenning" )
351352 install (FILES ${output_dir_${libname} }/${output_file_${libname} }
352353 DESTINATION ${install_dir_${libname} }
353354 ${COMPONENT_OPTION} )
@@ -370,8 +371,8 @@ function(add_compiler_rt_runtime name type)
370371 add_dependencies (${libname} ${LIB_DEPS} )
371372 endif ()
372373 set_target_properties (${libname} PROPERTIES
373- OUTPUT_NAME ${output_name_${libname} })
374- set_target_properties ( ${libname} PROPERTIES FOLDER "Compiler-RT Runtime " )
374+ OUTPUT_NAME ${output_name_${libname} }
375+ FOLDER "Compiler-RT/Runtimes " )
375376 if (LIB_LINK_LIBS)
376377 target_link_libraries (${libname} PRIVATE ${LIB_LINK_LIBS} )
377378 endif ()
@@ -538,7 +539,7 @@ function(add_compiler_rt_test test_suite test_name arch)
538539 DEPENDS ${TEST_DEPS}
539540 )
540541 add_custom_target (T${test_name} DEPENDS "${output_bin} " )
541- set_target_properties (T${test_name} PROPERTIES FOLDER "Compiler-RT Tests" )
542+ set_target_properties (T${test_name} PROPERTIES FOLDER "Compiler-RT/ Tests" )
542543
543544 # Make the test suite depend on the binary.
544545 add_dependencies (${test_suite} T${test_name} )
@@ -558,7 +559,7 @@ macro(add_compiler_rt_resource_file target_name file_name component)
558559 COMPONENT ${component} )
559560 add_dependencies (${component} ${target_name} )
560561
561- set_target_properties (${target_name} PROPERTIES FOLDER "Compiler-RT Misc " )
562+ set_target_properties (${target_name} PROPERTIES FOLDER "Compiler-RT/Resources " )
562563endmacro ()
563564
564565macro (add_compiler_rt_script name )
@@ -607,7 +608,7 @@ macro(add_custom_libcxx name prefix)
607608 COMMENT "Clobbering ${name} build directories"
608609 USES_TERMINAL
609610 )
610- set_target_properties (${name} -clear PROPERTIES FOLDER "Compiler-RT Misc " )
611+ set_target_properties (${name} -clear PROPERTIES FOLDER "Compiler-RT/Meta " )
611612
612613 add_custom_command (
613614 OUTPUT ${CMAKE_CURRENT_BINARY_DIR} /${name} -clobber-stamp
@@ -619,7 +620,7 @@ macro(add_custom_libcxx name prefix)
619620
620621 add_custom_target (${name} -clobber
621622 DEPENDS ${CMAKE_CURRENT_BINARY_DIR} /${name} -clobber-stamp)
622- set_target_properties (${name} -clobber PROPERTIES FOLDER "Compiler-RT Misc " )
623+ set_target_properties (${name} -clobber PROPERTIES FOLDER "Compiler-RT/Meta " )
623624
624625 set (PASSTHROUGH_VARIABLES
625626 ANDROID
0 commit comments