Commit 9be2eff8 authored by sumpfralle's avatar sumpfralle

use a startup script with a different name (not "pycam") for Windows ->...

use a startup script with a different name (not "pycam") for Windows -> otherwise process creation fails


git-svn-id: https://pycam.svn.sourceforge.net/svnroot/pycam/trunk@1044 bbaffbd6-741e-11dd-a85d-61de82d9cad9
parent 8e1c0fa9
...@@ -39,6 +39,7 @@ Version 0.5 - UNRELEASED ...@@ -39,6 +39,7 @@ Version 0.5 - UNRELEASED
* 2D: LWPOLYLINE, POLYLINE, CIRCLE, ARC, TEXT, MTEXT * 2D: LWPOLYLINE, POLYLINE, CIRCLE, ARC, TEXT, MTEXT
* 3D: 3DFACE * 3D: 3DFACE
* added support for EPS/PS contour files * added support for EPS/PS contour files
* fixed offset of SVG export
* noteworthy changes: * noteworthy changes:
* bounding box for 2D models must be _above_ the model (before: below or above) * bounding box for 2D models must be _above_ the model (before: below or above)
* simulation mode: the stock material removal simulation was removed * simulation mode: the stock material removal simulation was removed
......
pycam
\ No newline at end of file
...@@ -45,7 +45,7 @@ START_MENU_SUBDIR = os.path.join(START_MENU_BASEDIR, "PyCAM") ...@@ -45,7 +45,7 @@ START_MENU_SUBDIR = os.path.join(START_MENU_BASEDIR, "PyCAM")
# create a start menu item for pycam # create a start menu item for pycam
PYTHON_EXE = os.path.join(distutils.sysconfig.EXEC_PREFIX, "pythonw.exe") PYTHON_EXE = os.path.join(distutils.sysconfig.EXEC_PREFIX, "pythonw.exe")
# surround the start script with quotes to avoid space-issues # surround the start script with quotes to avoid space-issues
START_SCRIPT = '"%s"' % os.path.join(distutils.sysconfig.EXEC_PREFIX, "Scripts", "pycam") START_SCRIPT = '"%s"' % os.path.join(distutils.sysconfig.EXEC_PREFIX, "Scripts", "pycam-loader.py")
SHARE_DIR = os.path.join(distutils.sysconfig.PREFIX, "share", "pycam") SHARE_DIR = os.path.join(distutils.sysconfig.PREFIX, "share", "pycam")
......
...@@ -47,6 +47,8 @@ setup( ...@@ -47,6 +47,8 @@ setup(
long_description="""IMPORTANT NOTE: Please read the list of requirements: long_description="""IMPORTANT NOTE: Please read the list of requirements:
http://sourceforge.net/apps/mediawiki/pycam/index.php?title=Requirements http://sourceforge.net/apps/mediawiki/pycam/index.php?title=Requirements
Basically you will need Python, GTK and OpenGL. Basically you will need Python, GTK and OpenGL.
Windows: select Python 2.5 in the following dialog.
""", """,
# full list of classifiers at: # full list of classifiers at:
# http://pypi.python.org/pypi?:action=list_classifiers # http://pypi.python.org/pypi?:action=list_classifiers
...@@ -78,7 +80,7 @@ Basically you will need Python, GTK and OpenGL. ...@@ -78,7 +80,7 @@ Basically you will need Python, GTK and OpenGL.
"pycam.Toolpath", "pycam.Toolpath",
"pycam.Utils", "pycam.Utils",
], ],
scripts = ['pycam', 'pycam_win32_postinstall.py'], scripts = ['pycam-loader.py', 'pycam_win32_postinstall.py'],
data_files=[("share/pycam/doc", [ data_files=[("share/pycam/doc", [
"COPYING.TXT", "COPYING.TXT",
"INSTALL.TXT", "INSTALL.TXT",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment