From 7d52626a355b82d2b83d92f189244daf738b15f5 Mon Sep 17 00:00:00 2001 From: Sergey Kosarevsky Date: Sat, 3 Aug 2024 23:44:06 -0600 Subject: [PATCH] GitHub: enable Slang on Windows --- .github/workflows/c-cpp.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml index abdaf3cbb72..3e6bcebddff 100644 --- a/.github/workflows/c-cpp.yml +++ b/.github/workflows/c-cpp.yml @@ -76,7 +76,7 @@ jobs: matrix: config: - { - name: "Windows - MSVC 2022", + name: "Windows - MSVC 2022 (glslang)", os: windows-latest, build_type: "Debug", cc: "cl", @@ -84,6 +84,15 @@ jobs: generators: "Visual Studio 17 2022", cmake_args: "-DLVK_WITH_TRACY=ON" } + - { + name: "Windows - MSVC 2022 (Slang)", + os: windows-latest, + build_type: "Debug", + cc: "cl", + cxx: "cl", + generators: "Visual Studio 17 2022", + cmake_args: "-DLVK_WITH_TRACY=ON -DLVK_WITH_SLANG=ON" + } - { name: "Ubuntu - Clang", os: ubuntu-latest,