-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathREADME
More file actions
30 lines (20 loc) · 646 Bytes
/
Copy pathREADME
File metadata and controls
30 lines (20 loc) · 646 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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`