mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2024-11-21 21:55:02 +00:00
11 lines
233 B
Python
11 lines
233 B
Python
from conans import ConanFile
|
|
|
|
class ArgparseConan(ConanFile):
|
|
name = "argparse"
|
|
version = "3.0"
|
|
exports_sources = "include/argparse.hpp"
|
|
no_copy_source = True
|
|
|
|
def package(self):
|
|
self.copy("argparse.hpp")
|