From 19cbd4e5aa6a442c8d8a641316ad6b25e217bbe8 Mon Sep 17 00:00:00 2001 From: Pavel Belikov Date: Mon, 22 Oct 2018 15:47:23 +0300 Subject: Add conanfile.py --- conanfile.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 conanfile.py diff --git a/conanfile.py b/conanfile.py new file mode 100644 index 0000000..79b6ea0 --- /dev/null +++ b/conanfile.py @@ -0,0 +1,14 @@ +from conans import ConanFile + +class ArgsConan(ConanFile): + name = "args" + version = "6.2.0" + url = "https://github.com/Taywee/args" + description = "A simple header-only C++ argument parser library." + license = "MIT" + exports = ["LICENSE"] + exports_sources = "args.hxx" + + def package(self): + self.copy(pattern="LICENSE", dst="license") + self.copy(pattern="args.hxx", dst="include") -- cgit v1.2.1