Add info about adding the piponazo's conan repository

This commit is contained in:
Luis Diaz Mas 2018-05-17 23:06:32 +02:00 committed by Luis Díaz Más
parent f2c5fcf49d
commit 96aa7ef3d7
2 changed files with 4 additions and 2 deletions

View File

@ -81,11 +81,13 @@ For other installation methods (brew, installers, from sources), visit this [lin
conan](http://docs.conan.io/en/latest/installation.html)).
By default, conan only point to few public conan repositories. However you can add more easily. We rely in the usage of
the bincrafters's repository to find some of the dependencies. Therefore, we will need to add it to the list of remotes
the **bincrafters** and **piponazo** repositories to find some of the dependencies (libcurl and XmpSdk) . Therefore, we
will need to add it to the list of remotes
(we only need to do this once):
```bash
conan remote add conan-bincrafters https://api.bintray.com/conan/bincrafters/public-conan
conan remote add conan-piponazo https://api.bintray.com/conan/piponazo/piponazo
```
## Basic usage

View File

@ -25,7 +25,7 @@ class Exiv2Conan(ConanFile):
self.requires('gtest/1.8.0@bincrafters/stable')
if self.options.xmp:
self.requires('XmpSdk/2016.7@piponazo/testing')
self.requires('XmpSdk/2016.7@piponazo/stable') # from conan-piponazo
def imports(self):
self.copy('*.dll', dst='conanDlls', src='bin')