adde cmake options for feature ssl and compression and crow amalgamate

This commit is contained in:
Gulliver 2023-06-12 15:51:28 +02:00
parent 5baa4e620c
commit 045e447384
1 changed files with 5 additions and 1 deletions

View File

@ -50,7 +50,11 @@ jobs:
- name: Configure CMake
run: |
if [ "$RUNNER_OS" == "Windows" ]; then
cmake -DCMAKE_TOOLCHAIN_FILE=C:/vcpkg/scripts/buildsystems/vcpkg.cmake -B build
cmake \
-DCMAKE_TOOLCHAIN_FILE=C:/vcpkg/scripts/buildsystems/vcpkg.cmake \
-DCROW_FEATURES="ssl;compression" \
-DCROW_AMALGAMATE=ON \
-B build
else
cmake -B build
fi