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:
parent
150f20d10c
commit
e4069d79ca
1 changed files with 19 additions and 10 deletions
19
README.md
19
README.md
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue