Skip to content

Commit

Permalink
Add conanfile.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Pavel Belikov committed Oct 22, 2018
1 parent 34292e2 commit 19cbd4e
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions conanfile.py
Original file line number Diff line number Diff line change
@@ -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")

0 comments on commit 19cbd4e

Please sign in to comment.