etl/conanfile.py
John Wellbelove fe9a881388 Merge branch 'development' into feature/to_string
# Conflicts:
#	test/vs2017/etl.vcxproj.filters
2019-04-06 12:17:15 +01:00

28 lines
729 B
Python
Executable File

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from conans import ConanFile
class EmbeddedTemplateLibraryConan(ConanFile):
name = "embedded-template-library"
version = "14.11.2"
license = "MIT"
author = "John Wellbelove <smartgit@wellbelove.co.uk>"
url = "https://github.com/ETLCPP/etl"
description = "A C++ template library for embedded applications"
topics = ("embedded", "template", "container")
no_copy_source = True
scm = {
"type": "git",
"url": "auto",
"revision": "auto"
}
def package(self):
self.copy("LICENSE", "licenses")
self.copy("*.h", src="include", dst="include")
def package_id(self):
self.info.header_only()