From 231e5dc54051abd815f895f18f5f3d9b196c6c6d Mon Sep 17 00:00:00 2001 From: Roderick Kennedy Date: Fri, 26 Jul 2024 22:00:44 +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 88fcfd60..8ee79f5a 100644 --- a/.github/workflows/build_pc_client.yml +++ b/.github/workflows/build_pc_client.yml @@ -28,7 +28,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_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 -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}}