diff options
author | Ivan Zhakov <ivan@apache.org> | 2024-07-20 15:10:14 +0200 |
---|---|---|
committer | Ivan Zhakov <ivan@apache.org> | 2024-07-20 15:10:14 +0200 |
commit | 6068da7f3e8b24791ec022c83de3454f94e38d69 (patch) | |
tree | dcc59a49a1c5c18990688100b9f7afed940af0af | |
parent | * .github/workflows/windows.yml: Enable HTTPD private headers when installing (diff) | |
download | apache2-6068da7f3e8b24791ec022c83de3454f94e38d69.tar.xz apache2-6068da7f3e8b24791ec022c83de3454f94e38d69.zip |
* .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
-rw-r--r-- | .github/workflows/windows.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 4a8a68b2dd..4164e81ef3 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 }} |