From e7779f3c896ffcb6e948bc99bd415fa8afd822b7 Mon Sep 17 00:00:00 2001 From: Michael Smith Date: Thu, 6 Jun 2024 11:19:12 -0700 Subject: [PATCH] try -DCTL_BUILD_TOOLS=OFF --- .github/workflows/windows_vcpkg_release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/windows_vcpkg_release.yml b/.github/workflows/windows_vcpkg_release.yml index 9cade0f0..b5dd0710 100644 --- a/.github/workflows/windows_vcpkg_release.yml +++ b/.github/workflows/windows_vcpkg_release.yml @@ -77,7 +77,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 -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -D "CMAKE_TOOLCHAIN_FILE=C:/vcpkg/scripts/buildsystems/vcpkg.cmake" + run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -D "CMAKE_TOOLCHAIN_FILE=C:/vcpkg/scripts/buildsystems/vcpkg.cmake" -DCTL_BUILD_TOOLS=OFF - name: Build # Build your program with the given configuration