forked from rollbear/trompeloeil
-
Notifications
You must be signed in to change notification settings - Fork 0
/
conanfile.py
29 lines (24 loc) · 871 Bytes
/
conanfile.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#
# Trompeloeil C++ mocking framework
#
# Copyright Bjorn Fahller 2017-2019
#
# 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
class TrompeloelConan(ConanFile):
name = "trompeloeil"
version = "v33"
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")