forked from rollbear/trompeloeil
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconanfile.py
32 lines (27 loc) · 925 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
30
31
32
#
# 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 = "v37"
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/*", "LICENCE*.txt"
no_copy_source = True
# No settings/options are necessary, this is header only
def package_id(self):
self.info.header_only()
def package(self):
self.copy("include/*")
self.copy("LICENSE*.txt", dst="licenses")