@@ -91,7 +91,7 @@ function(add_compiler_rt_object_libraries name)
91
91
${extra_cflags_${libname} } ${target_flags} )
92
92
set_property (TARGET ${libname} APPEND PROPERTY
93
93
COMPILE_DEFINITIONS ${LIB_DEFS} )
94
- set_target_properties (${libname} PROPERTIES FOLDER "Compiler-RT Libraries" )
94
+ set_target_properties (${libname} PROPERTIES FOLDER "Compiler-RT/ Libraries" )
95
95
if (APPLE )
96
96
set_target_properties (${libname} PROPERTIES
97
97
OSX_ARCHITECTURES "${LIB_ARCHS_${libname} }" )
@@ -110,7 +110,7 @@ endmacro()
110
110
111
111
function (add_compiler_rt_component name )
112
112
add_custom_target (${name} )
113
- set_target_properties (${name} PROPERTIES FOLDER "Compiler-RT Misc " )
113
+ set_target_properties (${name} PROPERTIES FOLDER "Compiler-RT/Components " )
114
114
if (COMMAND runtime_register_component)
115
115
runtime_register_component(${name} )
116
116
endif ()
@@ -293,7 +293,7 @@ function(add_compiler_rt_runtime name type)
293
293
if (NOT TARGET ${LIB_PARENT_TARGET} )
294
294
add_custom_target (${LIB_PARENT_TARGET} )
295
295
set_target_properties (${LIB_PARENT_TARGET} PROPERTIES
296
- FOLDER "Compiler-RT Misc " )
296
+ FOLDER "Compiler-RT/Runtimes " )
297
297
endif ()
298
298
endif ()
299
299
@@ -348,6 +348,7 @@ function(add_compiler_rt_runtime name type)
348
348
DEPENDS ${sources_${libname} }
349
349
COMMENT "Building C object ${output_file_${libname} }" )
350
350
add_custom_target (${libname} DEPENDS ${output_dir_${libname} }/${output_file_${libname} })
351
+ set_target_properties (${libname} PROPERTIES FOLDER "Compiler-RT/Codegenning" )
351
352
install (FILES ${output_dir_${libname} }/${output_file_${libname} }
352
353
DESTINATION ${install_dir_${libname} }
353
354
${COMPONENT_OPTION} )
@@ -370,8 +371,8 @@ function(add_compiler_rt_runtime name type)
370
371
add_dependencies (${libname} ${LIB_DEPS} )
371
372
endif ()
372
373
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 " )
375
376
if (LIB_LINK_LIBS)
376
377
target_link_libraries (${libname} PRIVATE ${LIB_LINK_LIBS} )
377
378
endif ()
@@ -538,7 +539,7 @@ function(add_compiler_rt_test test_suite test_name arch)
538
539
DEPENDS ${TEST_DEPS}
539
540
)
540
541
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" )
542
543
543
544
# Make the test suite depend on the binary.
544
545
add_dependencies (${test_suite} T${test_name} )
@@ -558,7 +559,7 @@ macro(add_compiler_rt_resource_file target_name file_name component)
558
559
COMPONENT ${component} )
559
560
add_dependencies (${component} ${target_name} )
560
561
561
- set_target_properties (${target_name} PROPERTIES FOLDER "Compiler-RT Misc " )
562
+ set_target_properties (${target_name} PROPERTIES FOLDER "Compiler-RT/Resources " )
562
563
endmacro ()
563
564
564
565
macro (add_compiler_rt_script name )
@@ -607,7 +608,7 @@ macro(add_custom_libcxx name prefix)
607
608
COMMENT "Clobbering ${name} build directories"
608
609
USES_TERMINAL
609
610
)
610
- set_target_properties (${name} -clear PROPERTIES FOLDER "Compiler-RT Misc " )
611
+ set_target_properties (${name} -clear PROPERTIES FOLDER "Compiler-RT/Metatargets " )
611
612
612
613
add_custom_command (
613
614
OUTPUT ${CMAKE_CURRENT_BINARY_DIR} /${name} -clobber-stamp
@@ -619,7 +620,7 @@ macro(add_custom_libcxx name prefix)
619
620
620
621
add_custom_target (${name} -clobber
621
622
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/Metatargets " )
623
624
624
625
set (PASSTHROUGH_VARIABLES
625
626
ANDROID
0 commit comments