Skip to content

Latest commit

 

History

History
42 lines (25 loc) · 1.24 KB

README.md

File metadata and controls

42 lines (25 loc) · 1.24 KB

Build status Build Status

conan_dlib

Conan.io package for dlib library

Build packages

$ pip install conan_package_tools
$ python build.py

Upload packages to server

$ conan upload dlib/19.1.0@MojaveWastelander/stable --all

Reuse the packages

Basic setup

$ conan install dlib/19.1.0@MojaveWastelander/stable

Package basic test

$ conan test_package

Project setup

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

[requires]
dlib/19.1.0@MojaveWastelander/stable

[options]
dlib:iso_cpp_only=True

[generators]
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.