Skip to content

Commit

Permalink
Merge pull request #68 from pavel-belikov/support-conan
Browse files Browse the repository at this point in the history
Add conanfile.py
  • Loading branch information
Taylor C. Richberger authored Oct 22, 2018
2 parents 34292e2 + 19cbd4e commit a82a9d6
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 a82a9d6

Please sign in to comment.