Added conanfile

This commit is contained in:
Pranav Srinivas Kumar 2019-04-10 20:54:57 -04:00
parent 483e9f2a5a
commit 0b1a5b71f8

10
conanfile.py Normal file
View File

@ -0,0 +1,10 @@
from conans import ConanFile
class ArgparseConan(ConanFile):
name = "argparse"
version = "1.0"
exports_sources = "include/argparse.hpp"
no_copy_source = True
def package(self):
self.copy("argparse.hpp")