vcpkg is operational

This commit is contained in:
kdeng00
2022-08-07 20:42:11 -04:00
parent ed5ceedb44
commit 3195011f99
3 changed files with 29 additions and 7 deletions
+12 -5
View File
@@ -5,10 +5,10 @@ IcarusDownloadManager is a Linux CLI software client application that has the fe
## Built With
* C++ with C++17 features
* C++ with C++20 features
* CMake
* GCC >= 9 or Visual Studio >= 16 [2019]
* [conan](https://github.com/conan-io/conan)
* GCC >= 10 or Visual Studio >= 17 [2022]
* [vcpkg](https://github.com/microsoft/vcpkg)
* [json](https://github.com/nlohmann/json)
* [openssl](https://github.com/openssl/openssl)
* [curl](https://github.com/curl/curl)
@@ -17,6 +17,15 @@ IcarusDownloadManager is a Linux CLI software client application that has the fe
### Getting Started
Install packages
```
vcpkg install nlohman-json
vcpkg install openssl
vcpkg install curl
vcpkg install cpr
```
Build the project:
```
@@ -26,8 +35,6 @@ git clone --recursive https://github.com/kdeng00/IcarusDownloadManager
mkdir build
cd build
conan install .. --build
cmake ..
cmake --build . --config release -j
```