From 96aa7ef3d7fc857aaf62d6c09aa4180292b6eb0c Mon Sep 17 00:00:00 2001 From: Luis Diaz Mas Date: Thu, 17 May 2018 23:06:32 +0200 Subject: [PATCH] Add info about adding the piponazo's conan repository --- README-CONAN.md | 4 +++- conanfile.py | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/README-CONAN.md b/README-CONAN.md index becf73f3..0f24ed1e 100644 --- a/README-CONAN.md +++ b/README-CONAN.md @@ -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 diff --git a/conanfile.py b/conanfile.py index 3794a6b9..a0d822eb 100644 --- a/conanfile.py +++ b/conanfile.py @@ -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')