File tree 1 file changed +21
-0
lines changed
1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change 1
1
# PythonQt
2
+
2
3
[ ![ License] ( https://img.shields.io/github/license/mevislab/pythonqt.svg?color=blue )] ( LICENSE )
3
4
4
5
PythonQt is a dynamic [ Python] ( https://www.python.org ) binding for [ Qt] ( https://www.qt.io ) .
5
6
It offers an easy way to embed the Python scripting language into
6
7
your Qt applications.
7
8
8
9
# Documentation
10
+
9
11
API documentation is available at: https://mevislab.github.io/pythonqt
10
12
11
13
# Licensing
14
+
12
15
PythonQt is distributed under the ` LGPL 2.1 ` license.
13
16
14
17
## Licensing of Generator
18
+
15
19
The build system of PythonQt makes use of a patched version of the LGPL'ed QtScript
16
20
generator, located in the ` generator ` directory.
17
21
@@ -26,3 +30,20 @@ The generated wrappers are pre-generated and checked-in, so you only
26
30
need to build and run the generator when you want to build additional wrappers
27
31
or you want to upgrade/downgrade to another Qt version, but this requires
28
32
updating the typesystems as well.
33
+
34
+ # Building
35
+
36
+ ## Building on Windows with MinGW
37
+
38
+ To build PythonQt, you need to set the environment variable ` PYTHON_PATH ` to
39
+ point to the root dir of the python installation and ` PYTHON_LIB ` to point to
40
+ the directory where the python lib file is located. Then you should set the
41
+ ` PYTHON_VERSION ` variable to the Python version number.
42
+
43
+ When using the prebuild Python installer, this will be:
44
+
45
+ ``` cmd
46
+ set PYTHON_PATH = c:\Python38
47
+ set PYTHON_LIB = c:\Python38\libs
48
+ set PYTHON_VERSION = 38
49
+ ```
You can’t perform that action at this time.
0 commit comments