blob: 3565eb6d939504e760d20dd06e47d297cc6a84ab [file] [log] [blame]
Uilian Ries6234e3d2017-06-23 10:34:56 -03001#!/usr/bin/env python
2from conans import ConanFile
3
4
5class CatchConan(ConanFile):
6 name = "Catch"
Phil Nashe6ffbb72017-08-17 08:40:58 +01007 version = "2.0.0-develop.1"
Uilian Ries6234e3d2017-06-23 10:34:56 -03008 description = "A modern, C++-native, header-only, framework for unit-tests, TDD and BDD"
9 author = "philsquared"
10 generators = "cmake"
11 exports_sources = "single_include/*"
12 url = "https://github.com/philsquared/Catch"
Phil Nash0270afb2017-06-28 16:44:46 +010013 license = "Boost Software License - Version 1.0. http://www.boost.org/LICENSE_1_0.txt"
Uilian Ries6234e3d2017-06-23 10:34:56 -030014
Uilian Ries6234e3d2017-06-23 10:34:56 -030015 def package(self):
16 self.copy(pattern="catch.hpp", src="single_include", dst="include")