Update readme file with info on adding Bintray repository to conan remotes list

Signed-off-by: Dennis Potman <dennis.potman@adlinktech.com>
This commit is contained in:
Dennis Potman 2020-02-06 12:00:43 +01:00 committed by Jeroen Koekkoek
parent 150f20d10c
commit e4069d79ca

View file

@ -102,12 +102,21 @@ Such a build requires the presence of [CUnit](http://cunit.sourceforge.net/). Y
yourself, or you can choose to instead rely on the [Conan](https://conan.io) packaging system that
the CI build infrastructure also uses. In that case, install Conan and do:
$ conan install ..
$ conan install .. --build missing
in the build directory prior to running cmake. For Windows, depending on the generator, you might
also need to add switches to select the architecture and build type, e.g., ``conan install -s
arch=x86_64 -s build_type=Debug ..`` This will automatically download and/or build CUnit (and, at
the moment, OpenSSL).
in the build directory prior to running cmake.
The CUnit Conan package is hosted in the [Bintray repository](https://bintray.com/bincrafters/public-conan).
In case this repository was not added to your Conan remotes list yet (and the above mentioned install
command failed because it could not find the CUnit package), you can add the Bintray repository by:
$ conan remote add <REMOTE> https://api.bintray.com/conan/bincrafters/public-conan
Replace ``<REMOTE>`` with a name that identifies the repository (e.g. my-conan-bintray).
For Windows, depending on the generator, you might also need to add switches to select the architecture
and build type, e.g., ``conan install -s arch=x86_64 -s build_type=Debug ..`` This will automatically
download and/or build CUnit (and, at the moment, OpenSSL).
## Documentation