Add info about adding the piponazo's conan repository
This commit is contained in:
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)).
|
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
|
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):
|
(we only need to do this once):
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
conan remote add conan-bincrafters https://api.bintray.com/conan/bincrafters/public-conan
|
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
|
## Basic usage
|
||||||
|
|||||||
@ -25,7 +25,7 @@ class Exiv2Conan(ConanFile):
|
|||||||
self.requires('gtest/1.8.0@bincrafters/stable')
|
self.requires('gtest/1.8.0@bincrafters/stable')
|
||||||
|
|
||||||
if self.options.xmp:
|
if self.options.xmp:
|
||||||
self.requires('XmpSdk/2016.7@piponazo/testing')
|
self.requires('XmpSdk/2016.7@piponazo/stable') # from conan-piponazo
|
||||||
|
|
||||||
def imports(self):
|
def imports(self):
|
||||||
self.copy('*.dll', dst='conanDlls', src='bin')
|
self.copy('*.dll', dst='conanDlls', src='bin')
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user