From 36e6b4703f8221db0444d099aad84fb60517ab31 Mon Sep 17 00:00:00 2001 From: Roderick Kennedy Date: Sat, 27 Jul 2024 00:44:54 +0100 Subject: [PATCH] Update build_pc_client.yml --- .github/workflows/build_pc_client.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_pc_client.yml b/.github/workflows/build_pc_client.yml index 47f7e8d6..8a362c15 100644 --- a/.github/workflows/build_pc_client.yml +++ b/.github/workflows/build_pc_client.yml @@ -37,7 +37,7 @@ jobs: - name: Configure CMake # Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make. # See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type - run: cmake -B ${{github.workspace}}/build_pc_client -DCMAKE_SYSTEM_NAME=Windows -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DENABLE_ENCRYPTION=false -DPLATFORM_SUPPORT_OPENGL=false -DPLATFORM_SUPPORT_VULKAN=true -DPLATFORM_SUPPORT_D3D11=false -DPLATFORM_SUPPORT_D3D12=false -DSIMUL_BUILD_SAMPLES=false -DPLATFORM_BUILD_SAMPLES=false -DPLATFORM_BUILD_MD_LIBS=false -DTELEPORT_CLIENT_USE_D3D12=false -DTELEPORT_CLIENT_USE_VULKAN=true + run: cmake -B ${{github.workspace}}/build_pc_client -DVULKAN_SDK_DIR=D:/a/Teleport/Teleport/VULKAN_SDK -DCMAKE_SYSTEM_NAME=Windows -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DENABLE_ENCRYPTION=false -DPLATFORM_SUPPORT_OPENGL=false -DPLATFORM_SUPPORT_VULKAN=true -DPLATFORM_SUPPORT_D3D11=false -DPLATFORM_SUPPORT_D3D12=false -DSIMUL_BUILD_SAMPLES=false -DPLATFORM_BUILD_SAMPLES=false -DPLATFORM_BUILD_MD_LIBS=false -DTELEPORT_CLIENT_USE_D3D12=false -DTELEPORT_CLIENT_USE_VULKAN=true - name: Build # Build your program with the given configuration run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}