Metadata-Version: 1.1
Name: cxx2rs
Version: 0.3.2
Summary: A rust-binding generator for C/C++ files
Home-page: https://github.com/manuels/cxx2rs
Author: manuels
Author-email: UNKNOWN
License: UNKNOWN
Description: cxx2rs
        ======
        
        A rust-binding generator for C/C++ files
        
        
        Installation:
        -------------
        
        ::
        
            pip install cxx2rs
        
        
        
        Use it like this:
        -----------------
        
        ::
        
            cxx2rs glib-2.0 /usr/include/glib-2.0/glib/gmain.h `pkg-config --cflags-only-I glib-2.0` > gmain.rs
                   ^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^    ^^^^^^^^
                      |        |                                  |                                       |
                      |        |                                  compiler args (optional)                rust include file
                      |        C/C++ include file
                      library name (rust's #[link(name="glib-2.0")]
        
        
        
        Changelog
        =========
        
        0.3 (18/04/2015)
        ----------------
        
        * Use bitflags for C enums
        
        0.2 (22/02/2015)
        ----------------
        
        * Fix packaging
        
        
        0.1 (22/02/2015)
        ----------------
        
        * Initial version
        
        
        
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Intended Audience :: Developers
