mirror of https://github.com/mono/CppSharp.git
c-sharpdotnetmonobindingsbridgecclangcpluspluscppsharpglueinteropparserparsingpinvokeswigsyntax-treevisitorsxamarinxamarin-bindings
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
14 years ago | |
---|---|---|
examples | 14 years ago | |
m4 | 15 years ago | |
src | 14 years ago | |
tests | 14 years ago | |
.gitignore | 15 years ago | |
CPPInterop.sln | 14 years ago | |
LICENSE | 15 years ago | |
Makefile.am | 14 years ago | |
Makefile.include | 15 years ago | |
README | 15 years ago | |
autogen.sh | 15 years ago | |
configure.ac | 14 years ago |
README
Directory structure
-------------------
src/
Mono.VisualC.Interop
The runtime library
generator
The binding generator
qt
Auto generated Qt bindings + test program
tests2/
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`