Skip to content
This repository has been archived by the owner on Dec 9, 2022. It is now read-only.

Commit

Permalink
Windows: setup.py.in: Remove superfluous lines
Browse files Browse the repository at this point in the history
In Py2Exe we had to care about adding additional libraries for NumPy.
Now cx_Freeze does this job for us.

Contributes to CURA-2150
  • Loading branch information
thopiekar committed Nov 11, 2016
1 parent 4f50035 commit d2a8d3c
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions packaging/setup_win32.py.in
Original file line number Diff line number Diff line change
Expand Up @@ -58,15 +58,6 @@ build_options = {
"excludes": [ ]
}

# Extra libraries for numpy.core*
print("Copy numpy DLLs")
numpy_core_dir = os.path.dirname(numpy.core.__file__)
for item in os.listdir(numpy_core_dir):
if item.endswith(".dll"):
dll_abspath = os.path.join(numpy_core_dir, item)
print("Appending MKL library: " + dll_abspath)
build_options["include_files"].append((dll_abspath, ""),)

executables = [
Executable(script="@EXTERNALPROJECT_INSTALL_PREFIX@/bin/cura_app.py",
base="Win32GUI",
Expand Down

0 comments on commit d2a8d3c

Please sign in to comment.