File tree Expand file tree Collapse file tree 2 files changed +30
-2
lines changed Expand file tree Collapse file tree 2 files changed +30
-2
lines changed Original file line number Diff line number Diff line change @@ -43,9 +43,28 @@ This is a network library that has:
43
43
- cryptopp
44
44
- libcurl
45
45
46
- Use vcpkg on windows to install these dependencies when building with Visual Studio & cmake.
47
- Dont forget to install the correct triplet "vcpkg install boost --triplet x64-windows", when building 64 bit.
46
+ Use vcpkg on windows for these dependencies when building with Visual Studio & cmake.
48
47
https://vcpkg.io/en/getting-started.html
49
48
49
+ Example CMakeSettings.json
50
+ ``` json
51
+ {
52
+ "configurations" : [
53
+ {
54
+ "name" : " x64-Clang-Debug" ,
55
+ "generator" : " Ninja" ,
56
+ "configurationType" : " Debug" ,
57
+ "buildRoot" : " ${projectDir}\\ build\\ ${name}" ,
58
+ "installRoot" : " ${projectDir}\\ build\\ install\\ ${name}" ,
59
+ "buildCommandArgs" : " " ,
60
+ "ctestCommandArgs" : " " ,
61
+ "inheritEnvironments" : [ " clang_cl_x64" ],
62
+ "cmakeCommandArgs" : " -DVCPKG_DEFAULT_TRIPLET=x64-windows" ,
63
+ "cmakeToolchain" : " D:/vcpkg/scripts/buildsystems/vcpkg.cmake"
64
+ }
65
+ ]
66
+ }
67
+ ```
68
+
50
69
# Developer Notes
51
70
On msys2 use python (3) and python-pip of your subsystem, otherwise packages are not found
Original file line number Diff line number Diff line change
1
+ {
2
+ "name" : " roar" ,
3
+ "dependencies" : [
4
+ " boost" ,
5
+ " openssl" ,
6
+ " cryptopp" ,
7
+ " curl"
8
+ ]
9
+ }
You can’t perform that action at this time.
0 commit comments