Author: ivan Date: Wed Jul 10 11:20:28 2024 New Revision: 1919088 URL: http://svn.apache.org/viewvc?rev=1919088&view=rev Log: * .github/workflows/windows-cmake.yml: Set CMAKE_FIND_PACKAGE_PREFER_CONFIG=ON.
Modified: serf/trunk/.github/workflows/windows-cmake.yml Modified: serf/trunk/.github/workflows/windows-cmake.yml URL: http://svn.apache.org/viewvc/serf/trunk/.github/workflows/windows-cmake.yml?rev=1919088&r1=1919087&r2=1919088&view=diff ============================================================================== --- serf/trunk/.github/workflows/windows-cmake.yml (original) +++ serf/trunk/.github/workflows/windows-cmake.yml Wed Jul 10 11:20:28 2024 @@ -40,7 +40,7 @@ jobs: - uses: actions/checkout@v3 - name: Configure CMake - run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{ matrix.build-type }} -G "${{ matrix.generator }}" -DCMAKE_INSTALL_PREFIX=C:/vcpkg/installed/${{ matrix.triplet }} -DAPR_ROOT=C:/vcpkg/installed/${{ matrix.triplet }} -DAPRUtil_ROOT=C:/vcpkg/installed/${{ matrix.triplet }} + run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{ matrix.build-type }} -G "${{ matrix.generator }}" -DCMAKE_FIND_PACKAGE_PREFER_CONFIG=ON -DCMAKE_INSTALL_PREFIX=C:/vcpkg/installed/${{ matrix.triplet }} -DAPR_ROOT=C:/vcpkg/installed/${{ matrix.triplet }} -DAPRUtil_ROOT=C:/vcpkg/installed/${{ matrix.triplet }} - name: Build run: cmake --build ${{github.workspace}}/build --config ${{ matrix.build-type }}