aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTaylor C. Richberger <taywee@gmx.com>2018-10-22 13:51:13 -0600
committerGitHub <noreply@github.com>2018-10-22 13:51:13 -0600
commita82a9d6c94d7c58d8b96c65bdc1aba09a4f3e5db (patch)
tree4104611e7efff603ca4a3ec2775438a0a3dfa6c1
parentMerge pull request #67 from njlr/master (diff)
parentAdd conanfile.py (diff)
downloadargs.hxx-a82a9d6c94d7c58d8b96c65bdc1aba09a4f3e5db.tar.xz
Merge pull request #68 from pavel-belikov/support-conan
Add conanfile.py
-rw-r--r--conanfile.py14
1 files changed, 14 insertions, 0 deletions
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")