Skip to content
This repository was archived by the owner on Mar 11, 2021. It is now read-only.

Update README #10

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
Directory structure
-------------------

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

tests/
tests /
Regression tests

examples/
Hello
Small, Hello, World! example
Small & Hello & World! example

Inlining
--------
Expand All @@ -23,7 +23,7 @@ Inline methods are mapped to a shared library name libFoo-inline.so where libFoo
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`
g++ pkg-config --cflags QtCore QtGui` --shared -fPIC -o libQtGui-inline.so -fkeep-inline-functions qt-gui.cpp `pkg-config --libs QtCore QtGui`



Expand Down