2 # -*- coding: utf-8 -*-
4 from conans
import ConanFile
, tools
9 return git
.run("describe --tags --abbrev=0")
13 class Function2Conan(ConanFile
):
15 version
= get_version()
17 url
= "https://github.com/Naios/function2"
18 author
= "Denis Blank (denis.blank@outlook.com)"
19 description
= "Improved and configurable drop-in replacement to std::function"
20 homepage
= "http://naios.github.io/function2"
29 self
.copy("LICENSE.txt", "licenses")
30 self
.copy("include/function2/function2.hpp")
33 self
.info
.header_only()