Skip to content

Commit

Permalink
Updated build-tools, .gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
Gregory-AM committed Jul 23, 2023
1 parent 4cdcb9a commit de70858
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 46 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -45,3 +45,5 @@ overviewer_core/src/primitives.h
ImagingUtils.h

*_CONFIG.PY
*.spec

10 changes: 7 additions & 3 deletions build-tools/overviewer.spec
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# -*- mode: python -*-
# spec file for pyinstaller

block_cipher = None

Expand All @@ -10,10 +11,13 @@ def get_overviewer_pkgname():
return "overviewer-" + overviewer_version.VERSION

a = Analysis(['overviewer.py'],
pathex=['Z:\\devel\\Minecraft-Overviewer'],
binaries=None,
datas=[("overviewer_core/data", "overviewer_core/data")],
hiddenimports=['overviewer_core.aux_files.genPOI'],
hiddenimports=[
'overviewer_core.aux_files.genPOI',
# https://github.com/pypa/setuptools/issues/1963
'pkg_resources.py2_warn',
],
hookspath=[],
runtime_hooks=[],
excludes=['FixTk', 'tcl', 'tk', '_tkinter', 'tkinter', 'Tkinter'],
Expand All @@ -36,4 +40,4 @@ coll = COLLECT(exe,
a.datas,
strip=False,
upx=False,
name=get_overviewer_pkgname())
name=get_overviewer_pkgname())
43 changes: 0 additions & 43 deletions overviewer.spec

This file was deleted.

0 comments on commit de70858

Please sign in to comment.