Fix error: ISO C++ forbids in-class initialization of non-const static member 'm_started'
[catch.git] / conanfile.py
blobd5072afc00e4b0a247935a0ab74cc365a1afec26
1 #!/usr/bin/env python
2 from conans import ConanFile
5 class CatchConan(ConanFile):
6 name = "Catch"
7 version = "1.12.2"
8 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"
13 license = "Boost Software License - Version 1.0. http://www.boost.org/LICENSE_1_0.txt"
15 def package(self):
16 self.copy(pattern="catch.hpp", src="single_include", dst="include")
18 def package_id(self):
19 self.info.header_only()