Add info about adding the piponazo's conan repository

v0.27.3
Luis Diaz Mas 7 years ago committed by Luis Díaz Más
parent f2c5fcf49d
commit 96aa7ef3d7

@ -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

@ -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')

Loading…
Cancel
Save