aboutsummaryrefslogtreecommitdiff
path: root/openmp/docs
diff options
context:
space:
mode:
authorMichael Kruse <llvm-project@meinersbur.de>2024-05-25 17:34:28 +0200
committerGitHub <noreply@github.com>2024-05-25 17:34:28 +0200
commit8bdc57766708f31774e281a8a35fac6776a1d9a7 (patch)
tree476b9bb956157559fe8697150f3a86fe1a60992b /openmp/docs
parent064391df493927729fa79fb5b966efba2eb1e170 (diff)
downloadllvm-8bdc57766708f31774e281a8a35fac6776a1d9a7.zip
llvm-8bdc57766708f31774e281a8a35fac6776a1d9a7.tar.gz
llvm-8bdc57766708f31774e281a8a35fac6776a1d9a7.tar.bz2
[openmp] Revise IDE folder structure (#89750)
Update the folder titles for targets in the monorepository that have not seen taken care of for some time. These are the folders that targets are organized in Visual Studio and XCode (`set_property(TARGET <target> PROPERTY FOLDER "<title>")`) when using the respective CMake's IDE generator. * Ensure that every target is in a folder * Use a folder hierarchy with each LLVM subproject as a top-level folder * Use consistent folder names between subprojects * When using target-creating functions from AddLLVM.cmake, automatically deduce the folder. This reduces the number of `set_property`/`set_target_property`, but are still necessary when `add_custom_target`, `add_executable`, `add_library`, etc. are used. A LLVM_SUBPROJECT_TITLE definition is used for that in each subproject's root CMakeLists.txt.
Diffstat (limited to 'openmp/docs')
-rw-r--r--openmp/docs/CMakeLists.txt1
1 files changed, 1 insertions, 0 deletions
diff --git a/openmp/docs/CMakeLists.txt b/openmp/docs/CMakeLists.txt
index 1e4be31..4cb9fb4 100644
--- a/openmp/docs/CMakeLists.txt
+++ b/openmp/docs/CMakeLists.txt
@@ -78,6 +78,7 @@ if (LLVM_ENABLE_DOXYGEN)
COMMAND ${DOXYGEN_EXECUTABLE} ${CMAKE_CURRENT_BINARY_DIR}/doxygen.cfg
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
COMMENT "Generating openmp doxygen documentation." VERBATIM)
+ set_target_properties(doxygen-openmp PROPERTIES FOLDER "OpenMP/Docs")
if (LLVM_BUILD_DOCS)
add_dependencies(doxygen doxygen-openmp)