https://github.com/mono/cxxi
C++ interop framework
https://github.com/mono/cxxi
Last synced: 3 days ago
JSON representation
C++ interop framework
- Host: GitHub
- URL: https://github.com/mono/cxxi
- Owner: mono
- License: other
- Archived: true
- Created: 2011-11-15T23:08:27.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2020-10-01T21:13:05.000Z (about 5 years ago)
- Last Synced: 2024-11-10T00:02:44.670Z (about 1 year ago)
- Language: C#
- Homepage: http://groups.google.com/group/mono-cxxi
- Size: 3.96 MB
- Stars: 199
- Watchers: 46
- Forks: 43
- Open Issues: 7
-
Metadata Files:
- Readme: README
- License: LICENSE
- Code of conduct: CODE-OF-CONDUCT.md
Awesome Lists containing this project
- awesome-dot-dev - CXXI - C++ interop framework (Interoperability)
- awsome-dotnet - CXXI - C++ interop framework (Interoperability)
- awesome-csharp - CXXI - C++ interop framework (Interoperability)
- awesome-dotnet-cn - CXXI - C++互操作框架。 (互操作)
- awesome-dotnet - CXXI - C++ interop framework (Interoperability)
- awesome-dotnet - CXXI - C++ interop framework (Interoperability)
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`