C++ interop framework
Перейти к файлу
Alex Corrado 12598d0d77
Merge pull request #6 from terrajobst/code-of-conduct
Link Code of Conduct
2020-04-17 21:14:45 -04:00
examples Apply Miguel's patch to fix the build 2011-12-17 03:19:04 -05:00
m4 Clean up makefiles a bit. Add pkg-config macros needed to build on Mac 2011-07-06 00:20:23 -04:00
src [generator] Get correct native layout size when a field is typed as a class by value 2011-12-15 02:56:53 -05:00
tests Move qt into examples directory and don't build examples by default. Fix tests build 2011-12-15 02:57:12 -05:00
.gitignore Fix wrong directory case in makefile. Fix building from monodevelop. Update gitignore 2011-07-06 00:20:23 -04:00
CODE-OF-CONDUCT.md Link Code of Conduct 2020-04-07 19:28:34 -07:00
LICENSE Add license and license headers 2011-03-08 22:21:17 +00:00
Makefile.am Move qt into examples directory and don't build examples by default. Fix tests build 2011-12-15 02:57:12 -05:00
Makefile.include reorganize 2010-12-28 17:18:43 +00:00
README Sexy new name, cxxi 2011-06-28 04:46:25 -04:00
autogen.sh Hack up the build 2011-08-15 03:19:44 -04:00
configure.ac Move qt into examples directory and don't build examples by default. Fix tests build 2011-12-15 02:57:12 -05:00
cxxi.sln Sexy new name, cxxi 2011-06-28 04:46:25 -04:00

README

Directory structure
-------------------

src/
  Mono.Cxxi
    The runtime library
  generator
    The binding generator
  qt
    Auto generated Qt bindings + test program

tests/
  Regression tests

examples/
  Hello
    Small, Hello, World! example

Inlining
--------

Inline methods are mapped to a shared library name libFoo-inline.so where libFoo.so is the
original shared library we are binding to. This library should be compiled using gcc's 
-fkeep-inline-functions option:

g++ `pkg-config --cflags QtCore QtGui` --shared -fPIC -o libQtGui-inline.so -fkeep-inline-functions qt-gui.cpp `pkg-config --libs QtCore QtGui`