In the githaba code I found the following line.

#include <sodium/crypto_hash_sha256.h> 

It is not entirely clear how to connect this lib. In c #, this was done by adding a project and specifying a link to it. In c ++, as I understand it, this is done differently. I added the path to the folder with the libsodium project to the libsodium , but it still does not see this include enter image description here

    2 answers 2

    On your screen, go to C / C ++ -> common -> additional include directories. And add there a directory that contains "sodium / crypto_hash_sha256.h". This is for inclusive. And, most likely, you will need to add the lib file to the project.

      It's simple - add the path to libsоdium to the inclusion directories. In this case, the directory of inclusion must point to the folder containing sodium

      In short, keep the manual: https://stackoverflow.com/a/20059167/3640470