aboutsummaryrefslogtreecommitdiff
path: root/conanfile.py
blob: 79b6ea04abc4f8b26ee8ae99ac34f4e60eadbe01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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")