GitXplorerGitXplorer
g

conan-tinyxml2

public
0 stars
0 forks
0 issues

Commits

List of commits on branch master.
Unverified
a74b2941e9da6320ac8a1f0fbbadd60a80ddaad9

Updated travis.yml file to support clang7 docker image

nntagliani committed 6 years ago
Unverified
fbdab6d51eff30a56730fc50220378fb337ea04c

Updated to latest CI scripts.

nntagliani committed 6 years ago
Unverified
226c3909b16eea6d1f39453292df9f87f29889ca

Added CONAN_UPLOAD_ONLY_WHEN_STABLE

nntagliani committed 6 years ago
Unverified
a239d4cf398344c1f88c341b98c6b561ca8ed4fc

Updated recipe for version 7.0.1

nntagliani committed 6 years ago
Unverified
7149383999256eeba7e73b6c29209006de0996b8

Updated testing branch to stable

nntagliani committed 6 years ago
Unverified
45f52ed5cdf921e925b6777488e84310315c22b8

Modified recipe for version 7.0.0

nntagliani committed 6 years ago

README

The README file for this repository.

Build Status Build status

conan-tinyxml2

Conan package for TinyXML2 library made by Lee Thomason.

Basic setup

Recipe is hosted on my personal bintray and it's included also in conan center. Since conan-center is configured by default in conan installation you should be able to get the library just by installing it:

$ conan install tinyxml2/7.0.1@nicolastagliani/stable 

Project setup

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

[requires]
tinyxml2/7.0.1@nicolastagliani/stable

[options]
tinyxml2:shared=True # False

[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.cmake with all the paths and variables that you need to link with your dependencies.