From: Ivan Zhakov Date: Sat, 20 Jul 2024 13:10:14 +0000 (+0000) Subject: * .github/workflows/windows.yml: Add quotes for -DAPR_LIBRARIES argument. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6068da7f3e8b24791ec022c83de3454f94e38d69;p=thirdparty%2Fapache%2Fhttpd.git * .github/workflows/windows.yml: Add quotes for -DAPR_LIBRARIES argument. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1919399 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 4a8a68b2dd0..4164e81ef34 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -48,7 +48,7 @@ jobs: -G "${{ matrix.generator }}" -DCMAKE_TOOLCHAIN_FILE=C:/vcpkg/scripts/buildsystems/vcpkg.cmake -DAPR_INCLUDE_DIR=C:/vcpkg/installed/${{ matrix.triplet }}/include - -DAPR_LIBRARIES=C:/vcpkg/installed/${{ matrix.triplet }}/lib/libapr-1.lib;C:/vcpkg/installed/${{ matrix.triplet }}/lib/libaprutil-1.lib + "-DAPR_LIBRARIES=C:/vcpkg/installed/${{ matrix.triplet }}/lib/libapr-1.lib;C:/vcpkg/installed/${{ matrix.triplet }}/lib/libaprutil-1.lib" - name: Build run: cmake --build ${{github.workspace}}/build --config ${{ matrix.build-type }}