Cmake log output for found dependent libraries OpenSSL and Boost, Add vcpkg.json [DEX-431] #1320
+76
−1
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Added cmake log output for found Boost library and OpenSSL. This added log will print the found OpenSSL and Boost versions to be used while building the project. It is written in
configure
stage of cmake.Added the vcpkg.json for building the project using vcpkg. This helps building the project in terms of dealing with its dependencies. When you do
cmake .. -DCMAKE_TOOLCHAIN_FILE=/Users/ihsan/Desktop/work/src/vcpkg/scripts/buildsy
or you dovcpkg install
it installs the needed Boost and OpenSSL dependencies if missing and uses the vcpkg tool chain to compile the cpp client source code.