Metadata-Version: 2.1
Name: dogebuild-c
Version: 0.1.0.post1
Summary: C language dogebuild plugin
Home-page: https://github.com/dogebuild/dogebuild-c
Author: Kirill Sulim
Author-email: kirillsulim@gmail.com
License: MIT
Description: # dogebuild-c
        
        [![Build Status](https://travis-ci.com/dogebuild/dogebuild-c.svg?branch=master)](https://travis-ci.com/dogebuild/dogebuild-c)
        [![PyPI version](https://badge.fury.io/py/dogebuild-c.svg)](https://badge.fury.io/py/dogebuild-c)
        [![Documentation Status](https://readthedocs.org/projects/dogebuild-c/badge/?version=latest)](https://dogebuild-c.readthedocs.io/en/latest/?badge=latest)
        
        
        C language plugin for dogebuild
        
        ## Dogefile example
        
        ```python
        from pathlib import Path
        
        from dogebuild_c.c_plugin import CPlugin, BinaryType
        
        
        CPlugin(
            binary_type=BinaryType.EXECUTABLE,
            out_name="helloworlder",
            src=[Path("helloworlder.c"), Path("main.c"),],
            headers=[Path("helloworlder.h"),],
            test_src=[Path("test.c"),],
            test_src_exclude=[Path("main.c"),],
        )
        
        ```
        
Keywords: dogebuild builder
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development
Description-Content-Type: text/markdown
