mirror of
git://github.com/kovidgoyal/calibre.git
synced 2025-12-06 13:35:48 +01:00
Get it building on windows
This commit is contained in:
parent
8fac2b3a44
commit
b80600babb
2 changed files with 1 additions and 5 deletions
|
|
@ -58,7 +58,6 @@
|
|||
'iconengines',
|
||||
# 'mediaservice',
|
||||
'platforms',
|
||||
'platformthemes',
|
||||
# 'playlistformats',
|
||||
'sqldrivers',
|
||||
# 'webview',
|
||||
|
|
@ -68,6 +67,7 @@
|
|||
if islinux:
|
||||
QT_PLUGINS += [
|
||||
'platforminputcontexts',
|
||||
'platformthemes',
|
||||
'wayland-decoration-client',
|
||||
'wayland-graphics-integration-client',
|
||||
'wayland-shell-integration',
|
||||
|
|
@ -75,8 +75,6 @@
|
|||
]
|
||||
else:
|
||||
QT_PLUGINS.append('styles')
|
||||
if ismacos:
|
||||
QT_PLUGINS.remove('platformthemes')
|
||||
|
||||
PYQT_MODULES = (
|
||||
'Qt',
|
||||
|
|
|
|||
|
|
@ -166,8 +166,6 @@ def copybin(x):
|
|||
for x in QT_DLLS:
|
||||
copybin(os.path.join(QT_PREFIX, 'bin', x + '.dll'))
|
||||
copybin(os.path.join(QT_PREFIX, 'bin', 'QtWebEngineProcess.exe'))
|
||||
for x in 'libGLESv2 libEGL'.split():
|
||||
copybin(os.path.join(QT_PREFIX, 'bin', x + '.dll'))
|
||||
plugdir = j(QT_PREFIX, 'plugins')
|
||||
tdir = j(env.app_base, 'plugins')
|
||||
for d in QT_PLUGINS:
|
||||
|
|
|
|||
Loading…
Reference in a new issue