C++ interop framework
Перейти к файлу
Alexander Corrado 474409c625 Do not always assume ICppObject; support structs too 2011-07-22 02:54:16 -04:00
examples Clean up makefiles a bit. Add pkg-config macros needed to build on Mac 2011-07-06 00:20:23 -04: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 Do not always assume ICppObject; support structs too 2011-07-22 02:54:16 -04:00
tests Add ByRef attribute for value types returned by ref and failing test 2011-07-19 01:20:54 -04:00
.gitignore Fix wrong directory case in makefile. Fix building from monodevelop. Update gitignore 2011-07-06 00:20:23 -04:00
LICENSE Add license and license headers 2011-03-08 22:21:17 +00:00
Makefile.am Fix up build. 2011-05-23 22:27:40 -04: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 reorganize 2010-12-28 17:18:43 +00:00
configure.ac Clean up makefiles a bit. Add pkg-config macros needed to build on Mac 2011-07-06 00:20:23 -04: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`