Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[openmp] Revise IDE folder structure #89750

Merged
merged 10 commits into from
May 25, 2024
2 changes: 1 addition & 1 deletion llvm/cmake/modules/AddLLVM.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ function(add_llvm_symbol_exports target_name export_file)

add_custom_target(${target_name}_exports DEPENDS ${native_export_file})
get_subproject_title(subproject_title)
set_target_properties(${target_name}_exports PROPERTIES FOLDER "${subproject_title}/Misc")
set_target_properties(${target_name}_exports PROPERTIES FOLDER "${subproject_title}/API")

get_property(srcs TARGET ${target_name} PROPERTY SOURCES)
foreach(src ${srcs})
Expand Down
2 changes: 1 addition & 1 deletion llvm/runtimes/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@ function(runtime_register_target name)
EXTRA_TARGETS ${${name}_extra_targets}
${${name}_test_targets}
USE_TOOLCHAIN
FOLDER "${name}"
FOLDER "Runtimes"
${EXTRA_ARGS} ${ARG_EXTRA_ARGS})

add_dependencies(runtimes runtimes-${name})
Expand Down
1 change: 0 additions & 1 deletion llvm/unittests/Analysis/InlineOrderPlugin/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,4 @@ if (NOT WIN32 AND NOT CYGWIN)
# it is built before the plugin.
add_dependencies(InlineOrderPlugin intrinsics_gen)
add_dependencies(AnalysisTests InlineOrderPlugin)
set_property(TARGET InlineOrderPlugin PROPERTY FOLDER "Tests/Unittests/AnalysisTests")
endif()
2 changes: 0 additions & 2 deletions llvm/utils/mlgo-utils/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,3 @@ add_lit_testsuite(check-mlgo-utils "Running mlgo-utils tests"
${CMAKE_CURRENT_BINARY_DIR}
DEPENDS "FileCheck" "not" "count" "split-file" "yaml2obj" "llvm-objcopy"
)

set_target_properties(check-mlgo-utils PROPERTIES FOLDER "LLVM/Tests")