From bc2dbb510671210be9054f6b39368e62a08c9ac2 Mon Sep 17 00:00:00 2001 From: Christoph Schmidt Date: Wed, 11 Dec 2024 12:32:14 +0100 Subject: [PATCH] updated pyinstaller/lasercontrol_scope.spec --- pyinstaller/lasercontrol_scope.spec | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pyinstaller/lasercontrol_scope.spec b/pyinstaller/lasercontrol_scope.spec index 67bf5ad..7640289 100644 --- a/pyinstaller/lasercontrol_scope.spec +++ b/pyinstaller/lasercontrol_scope.spec @@ -1,10 +1,11 @@ # -*- mode: python ; coding: utf-8 -*- +import pathlib epos_dll_path = pathlib.Path('../src/SacherECLControl/libs/SacherLib/PythonMotorControlClass/EposCmd64.dll') sacher_pyd_path = pathlib.Path('../src/SacherECLControl/libs/SacherLib/PythonMotorControlClass/lib/Python312/SacherMotorControl.pyd') a = Analysis( - ['lasercontrol_scope.py'], + ['../src/lasercontrol_scope.py'], pathex=[], binaries=[ (str(epos_dll_path), '.'), @@ -39,7 +40,7 @@ exe = EXE( upx=True, upx_exclude=[], runtime_tmpdir=None, - console=False, + console=True, disable_windowed_traceback=False, argv_emulation=False, target_arch=None,