forked from mirror/trompeloeil
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
883 B
Python
31 lines
883 B
Python
#
|
|
# Trompeloeil C++ mocking framework
|
|
#
|
|
# Copyright Bjorn Fahller 2017
|
|
#
|
|
# Use, modification and distribution is subject to the
|
|
# Boost Software License, Version 1.0. (See accompanying
|
|
# file LICENSE_1_0.txt or copy at
|
|
# http://www.boost.org/LICENSE_1_0.txt)
|
|
#
|
|
# Project home: https://github.com/rollbear/trompeloeil
|
|
#
|
|
|
|
from conans import ConanFile, tools
|
|
import os
|
|
|
|
|
|
class TrompeloelConan(ConanFile):
|
|
name = "trompeloeil"
|
|
version = "v28"
|
|
license = "Boost Software License - Version 1.0 - August 17th, 2003"
|
|
url = "https://github.com/rollbear/trompeloeil.git"
|
|
description = "Header only C++14 mocking framework"
|
|
exports_sources = "include/*.hpp", "LICENCE*.txt"
|
|
# No settings/options are necessary, this is header only
|
|
|
|
|
|
def package(self):
|
|
self.copy("*.hpp", src="include", dst="include")
|
|
self.copy("LICENSE*.txt", dst="licenses")
|