diff options
author | Rahul Paknikar | 2021-01-08 11:58:08 +0530 |
---|---|---|
committer | GitHub | 2021-01-08 11:58:08 +0530 |
commit | 774d1a1100634b3d64b20f3b87f8ac453f3d58dc (patch) | |
tree | 326545eaf6e054df67f7c8568dc13b69a43254ed /Windows/nghdl.spec | |
parent | 685bc96bcef1109164d879492449e54b2f6baf08 (diff) | |
parent | 91efdb04217204a5af41d1cb6e4ca71f70ab6a89 (diff) | |
download | nghdl-774d1a1100634b3d64b20f3b87f8ac453f3d58dc.tar.gz nghdl-774d1a1100634b3d64b20f3b87f8ac453f3d58dc.tar.bz2 nghdl-774d1a1100634b3d64b20f3b87f8ac453f3d58dc.zip |
Merge pull request #60 from rahulp13/installersi2.1
updated installer for windows os
Diffstat (limited to 'Windows/nghdl.spec')
-rw-r--r-- | Windows/nghdl.spec | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/Windows/nghdl.spec b/Windows/nghdl.spec new file mode 100644 index 0000000..23ebcbc --- /dev/null +++ b/Windows/nghdl.spec @@ -0,0 +1,33 @@ +# -*- mode: python ; coding: utf-8 -*- + +block_cipher = None + + +a = Analysis(['src\\ngspice_ghdl.py'], + pathex=['C:\\Users\\admin\\Desktop\\FOSSEE-eSim\\nghdl-build'], + binaries=[], + datas=[], + hiddenimports=[], + hookspath=[], + runtime_hooks=[], + excludes=[], + win_no_prefer_redirects=False, + win_private_assemblies=False, + cipher=block_cipher, + noarchive=False) +pyz = PYZ(a.pure, a.zipped_data, + cipher=block_cipher) +exe = EXE(pyz, + a.scripts, + a.binaries, + a.zipfiles, + a.datas, + [], + name='nghdl', + debug=False, + bootloader_ignore_signals=False, + strip=False, + upx=True, + upx_exclude=[], + runtime_tmpdir=None, + console=True ) |