2017-06-23 15:34:56 +02:00
|
|
|
#!/usr/bin/env python
|
2018-06-19 07:14:46 +02:00
|
|
|
from conans import ConanFile, CMake
|
2017-06-23 15:34:56 +02:00
|
|
|
|
|
|
|
|
|
|
|
class CatchConan(ConanFile):
|
2018-11-16 12:45:07 +01:00
|
|
|
name = "Catch2"
|
2017-06-23 15:34:56 +02:00
|
|
|
description = "A modern, C++-native, header-only, framework for unit-tests, TDD and BDD"
|
2018-11-16 12:45:07 +01:00
|
|
|
topics = ("conan", "catch2", "header-only", "unit-test", "tdd", "bdd")
|
2018-06-11 10:48:10 +02:00
|
|
|
url = "https://github.com/catchorg/Catch2"
|
2018-11-16 12:45:07 +01:00
|
|
|
homepage = url
|
|
|
|
license = "BSL-1.0"
|
|
|
|
exports = "LICENSE.txt"
|
|
|
|
exports_sources = ("single_include/*", "CMakeLists.txt", "CMake/*", "contrib/*")
|
|
|
|
generators = "cmake"
|
2018-06-19 07:14:46 +02:00
|
|
|
|
2017-06-23 15:34:56 +02:00
|
|
|
def package(self):
|
2018-06-19 07:14:46 +02:00
|
|
|
cmake = CMake(self)
|
|
|
|
cmake.definitions["BUILD_TESTING"] = "OFF"
|
|
|
|
cmake.definitions["CATCH_INSTALL_DOCS"] = "OFF"
|
2018-07-01 16:21:12 +02:00
|
|
|
cmake.definitions["CATCH_INSTALL_HELPERS"] = "ON"
|
2019-05-23 14:29:45 +02:00
|
|
|
cmake.configure(build_folder='build')
|
2018-06-19 07:14:46 +02:00
|
|
|
cmake.install()
|
|
|
|
|
|
|
|
self.copy(pattern="LICENSE.txt", dst="licenses")
|
2017-10-31 15:17:21 +01:00
|
|
|
|
2017-08-26 19:53:03 +02:00
|
|
|
def package_id(self):
|
2018-06-19 07:14:46 +02:00
|
|
|
self.info.header_only()
|
2020-04-07 13:19:25 +02:00
|
|
|
|
|
|
|
def package_info(self):
|
|
|
|
self.cpp_info.builddirs.append("lib/cmake/Catch2")
|