Skip to content

Commit

Permalink
windows: build mavpicviewer executables
Browse files Browse the repository at this point in the history
  • Loading branch information
rmackay9 committed Oct 5, 2024
1 parent a2a42f9 commit 946dc80
Showing 1 changed file with 32 additions and 1 deletion.
33 changes: 32 additions & 1 deletion windows/mavproxy.spec
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,21 @@ MAVExpAny = Analysis(['.\\tools\\MAVExplorer.py'],
hookspath=None,
runtime_hooks=None,
excludes= ['sphinx', 'docutils', 'alabaster', 'FixTk', 'tcl', 'tk', '_tkinter', 'tkinter', 'Tkinter'])
# MERGE( (MAVProxyAny, 'mavproxy', 'mavproxy'), (MAVExpAny, 'MAVExplorer', 'MAVExplorer') )
MAVPicViewerAny = Analysis(['.\\tools\\mavpicviewer\\mavpicviewer.py'],
pathex=[os.path.abspath('.')],
# for some unknown reason these hidden imports don't pull in
# all the needed pieces, so we also import them in mavproxy.py
hiddenimports=['cv2', 'wx',
'numpy', 'dateutil',
'wx.lib.agw.genericmessagedialog', 'wx.lib.wordwrap', 'wx.lib.buttons',
'wx.lib.embeddedimage', 'wx.lib.imageutils', 'wx.lib.agw.aquabutton',
'wx.lib.agw.gradientbutton', 'FileDialog', 'Dialog',
] + collect_submodules('pymavlink'),
datas= [],
hookspath=None,
runtime_hooks=None,
excludes= ['sphinx', 'docutils', 'alabaster', 'FixTk', 'tcl', 'tk', '_tkinter', 'tkinter', 'Tkinter'])
# MERGE( (MAVProxyAny, 'mavproxy', 'mavproxy'), (MAVExpAny, 'MAVExplorer', 'MAVExplorer'), (MAVPicViewerAny, 'mavpicviewer', 'mavpicviewer') )
MAVProxy_pyz = PYZ(MAVProxyAny.pure)
MAVProxy_exe = EXE(MAVProxy_pyz,
MAVProxyAny.scripts,
Expand Down Expand Up @@ -69,3 +83,20 @@ MAVExp_coll = COLLECT(MAVExp_exe,
strip=None,
upx=True,
name='MAVExplorer')

MAVPicViewer_pyz = PYZ(MAVPicViewerAny.pure)
MAVPicViewer_exe = EXE(MAVPicViewer_pyz,
MAVPicViewerAny.scripts,
exclude_binaries=True,
name='mavpicviewer.exe',
debug=False,
strip=None,
upx=True,
console=True )
MAVExp_coll = COLLECT(MAVPicViewer_exe,
MAVPicViewerAny.binaries,
MAVPicViewerAny.zipfiles,
MAVPicViewerAny.datas,
strip=None,
upx=True,
name='mavpicviewer')

0 comments on commit 946dc80

Please sign in to comment.