jenkins
Last change
on this file was
64efc22,
checked in by Vadim Troshchinskiy <vtroshchinskiy@…>, 19 months ago
|
Update qtermwidget to modern version
|
-
Property mode set to
100644
|
File size:
529 bytes
|
Line | |
---|
1 | from pyqtbuild import PyQtBindings, PyQtProject |
---|
2 | |
---|
3 | class QTermWidget(PyQtProject): |
---|
4 | def __init__(self): |
---|
5 | super().__init__() |
---|
6 | self.bindings_factories = [QTermWidgetBindings] |
---|
7 | |
---|
8 | class QTermWidgetBindings(PyQtBindings): |
---|
9 | def __init__(self, project): |
---|
10 | super().__init__(project, name='QTermWidget', sip_file='qtermwidget.sip', qmake_QT=['widgets']) |
---|
11 | self._project = project |
---|
12 | |
---|
13 | def apply_user_defaults(self, tool): |
---|
14 | self.libraries.append('qtermwidget5') |
---|
15 | super().apply_user_defaults(tool) |
---|
Note: See
TracBrowser
for help on using the repository browser.