1# Including the native target is important because some of LLVM's tests fail if 2# you don't. 3set(LLVM_TARGETS_TO_BUILD Native CACHE STRING "") 4 5# Include the DirectX target for DXIL code generation, eventually we'll include 6# SPIR-V here too. 7set(LLVM_EXPERIMENTAL_TARGETS_TO_BUILD "DirectX;SPIRV" CACHE STRING "") 8 9# HLSL support is currently limted to clang, eventually it will expand to 10# clang-tools-extra too. 11set(LLVM_ENABLE_PROJECTS "clang;clang-tools-extra" CACHE STRING "") 12 13set(CLANG_ENABLE_HLSL On CACHE BOOL "") 14 15if (HLSL_ENABLE_DISTRIBUTION) 16 set(LLVM_DISTRIBUTION_COMPONENTS 17 "clang;hlsl-resource-headers;clangd" 18 CACHE STRING "") 19endif() 20