Skip to content

Commit a24b173

Browse files
Update vcpkg (#82)
1 parent 23c9c17 commit a24b173

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Below are instructions to build on different OS's. You can also use the followin
3131
```powershell
3232
PS> git submodule update --init
3333
PS> .\submodules\vcpkg\bootstrap-vcpkg.bat
34-
PS> .\submodules\vcpkg\vcpkg.exe install cpprestsdk:x64-windows
34+
PS> .\submodules\vcpkg\vcpkg.exe install cpprestsdk[websockets]:x64-windows
3535
PS> mkdir build.release
3636
PS> cd build.release
3737
PS> cmake .. -A x64 -DCMAKE_TOOLCHAIN_FILE="..\submodules\vcpkg\scripts\buildsystems\vcpkg.cmake" -DCMAKE_BUILD_TYPE=Release -DUSE_CPPRESTSDK=true
@@ -44,7 +44,7 @@ Output will be in `build.release\bin\Release\`
4444
$ git submodule update --init
4545
$ brew install gcc6
4646
$ ./submodules/vcpkg/bootstrap-vcpkg.sh
47-
$ ./submodules/vcpkg/vcpkg install cpprestsdk
47+
$ ./submodules/vcpkg/vcpkg install cpprestsdk[websockets]
4848
$ mkdir build.release
4949
$ cd build.release
5050
$ cmake .. -DCMAKE_TOOLCHAIN_FILE=../submodules/vcpkg/scripts/buildsystems/vcpkg.cmake -DCMAKE_BUILD_TYPE=Release -DUSE_CPPRESTSDK=true
@@ -57,7 +57,7 @@ Output will be in `build.release/bin/`
5757
```bash
5858
$ git submodule update --init
5959
$ ./submodules/vcpkg/bootstrap-vcpkg.sh
60-
$ ./submodules/vcpkg/vcpkg install cpprestsdk boost-system boost-chrono boost-thread
60+
$ ./submodules/vcpkg/vcpkg install cpprestsdk[websockets] boost-system boost-chrono boost-thread
6161
$ mkdir build.release
6262
$ cd build.release
6363
$ cmake .. -DCMAKE_TOOLCHAIN_FILE=../submodules/vcpkg/scripts/buildsystems/vcpkg.cmake -DCMAKE_BUILD_TYPE=Release -DUSE_CPPRESTSDK=true

azure-pipelines.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ stages:
3737
- powershell: "& ./submodules/vcpkg/bootstrap-vcpkg.bat"
3838
condition: ne(variables.CACHE_RESTORED, 'true')
3939
displayName: Bootstrap vcpkg
40-
- powershell: "& ./submodules/vcpkg/vcpkg.exe install cpprestsdk:x64-windows msgpack:x64-windows --vcpkg-root ./submodules/vcpkg"
40+
- powershell: "& ./submodules/vcpkg/vcpkg.exe install cpprestsdk[websockets]:x64-windows msgpack:x64-windows --vcpkg-root ./submodules/vcpkg"
4141
condition: ne(variables.CACHE_RESTORED, 'true')
4242
displayName: vcpkg install dependencies
4343

@@ -50,7 +50,7 @@ stages:
5050
- bash: "./submodules/vcpkg/bootstrap-vcpkg.sh --allowAppleClang"
5151
condition: ne(variables.CACHE_RESTORED, 'true')
5252
displayName: Bootstrap vcpkg
53-
- bash: "./submodules/vcpkg/vcpkg install cpprestsdk msgpack"
53+
- bash: "./submodules/vcpkg/vcpkg install cpprestsdk[websockets] msgpack"
5454
condition: ne(variables.CACHE_RESTORED, 'true')
5555
displayName: vcpkg install dependencies
5656

@@ -63,7 +63,7 @@ stages:
6363
- bash: "./submodules/vcpkg/bootstrap-vcpkg.sh"
6464
condition: ne(variables.CACHE_RESTORED, 'true')
6565
displayName: Bootstrap vcpkg
66-
- bash: "./submodules/vcpkg/vcpkg install cpprestsdk boost-system boost-chrono boost-thread msgpack --vcpkg-root ./submodules/vcpkg"
66+
- bash: "./submodules/vcpkg/vcpkg install cpprestsdk[websockets] boost-system boost-chrono boost-thread msgpack --vcpkg-root ./submodules/vcpkg"
6767
condition: ne(variables.CACHE_RESTORED, 'true')
6868
displayName: vcpkg install dependencies
6969
- bash: "sudo apt-get update && sudo apt install valgrind"

submodules/vcpkg

Submodule vcpkg updated 10049 files

0 commit comments

Comments
 (0)