[clang] 8c5e487 - [HLSL][CMake] Add clangd and distribution settings (#92011)
via cfe-commits
cfe-commits at lists.llvm.org
Fri May 17 07:10:31 PDT 2024
Author: Chris B
Date: 2024-05-17T09:10:27-05:00
New Revision: 8c5e487ee3160cf4d40c0680ed40e4b0a494e956
URL: https://github.com/llvm/llvm-project/commit/8c5e487ee3160cf4d40c0680ed40e4b0a494e956
DIFF: https://github.com/llvm/llvm-project/commit/8c5e487ee3160cf4d40c0680ed40e4b0a494e956.diff
LOG: [HLSL][CMake] Add clangd and distribution settings (#92011)
This just adds some simple distribution settings and includes clangd in
the build for distribution.
Added:
Modified:
clang/cmake/caches/HLSL.cmake
Removed:
################################################################################
diff --git a/clang/cmake/caches/HLSL.cmake b/clang/cmake/caches/HLSL.cmake
index 84850c86f12cd..27f848fdccf0c 100644
--- a/clang/cmake/caches/HLSL.cmake
+++ b/clang/cmake/caches/HLSL.cmake
@@ -8,6 +8,12 @@ set(LLVM_EXPERIMENTAL_TARGETS_TO_BUILD "DirectX;SPIRV" CACHE STRING "")
# HLSL support is currently limted to clang, eventually it will expand to
# clang-tools-extra too.
-set(LLVM_ENABLE_PROJECTS "clang" CACHE STRING "")
+set(LLVM_ENABLE_PROJECTS "clang;clang-tools-extra" CACHE STRING "")
set(CLANG_ENABLE_HLSL On CACHE BOOL "")
+
+if (NOT CMAKE_CONFIGURATION_TYPES)
+ set(LLVM_DISTRIBUTION_COMPONENTS
+ "clang;hlsl-resource-headers;clangd"
+ CACHE STRING "")
+endif()
More information about the cfe-commits
mailing list