Skip to content

Latest commit

 

History

History
46 lines (25 loc) · 1.26 KB

README.md

File metadata and controls

46 lines (25 loc) · 1.26 KB

Build Status

conan-poco

Conan.io package for POCO library

The packages generated with this conanfile can be found in conan.io.

Build packages

Download conan client from Conan.io and run:

$ python build.py

If your are in Windows you should run it from a VisualStudio console in order to get "mc.exe" in path.

Upload packages to server

$ conan upload Poco/1.7.0@lasote/stable --all

Reuse the packages

Basic setup

$ conan install Poco/1.7.0@lasote/stable

Project setup

If you handle multiple dependencies in your project is better to add a conanfile.txt

[requires]
Poco/1.7.0@lasote/stable

[options]
Poco:shared=True # False

[generators]
txt
cmake

Complete the installation of requirements for your project running:

conan install . 

Project setup installs the library (and all his dependencies) and generates the files conanbuildinfo.txt and conanbuildinfo.cmake with all the paths and variables that you need to link with your dependencies.