diff options
author | don bright <hugh.m.bright@gmail.com> | 2013-01-21 13:25:14 (GMT) |
---|---|---|
committer | don bright <hugh.m.bright@gmail.com> | 2013-01-21 13:25:14 (GMT) |
commit | 1af090c7b3a56b24851712a1ae41321358a8aac4 (patch) | |
tree | e17ad5ebcd0026fded4f4fa5be8ccec8f4ffaa7b /scripts | |
parent | 0e4e8b64a7195b9b65cf029ccf8bb9f795bd9bae (diff) |
add wrapper code from nop head, mod build scripts
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/installer.nsi | 1 | ||||
-rwxr-xr-x | scripts/release-common.sh | 9 |
2 files changed, 10 insertions, 0 deletions
diff --git a/scripts/installer.nsi b/scripts/installer.nsi index 87ec18d..1841431 100644 --- a/scripts/installer.nsi +++ b/scripts/installer.nsi @@ -6,6 +6,7 @@ DirText "This will install OpenSCAD on your computer. Choose a directory" Section "install" SetOutPath $INSTDIR File openscad.exe +File openscad.com File /r /x mingw-cross-env examples File /r /x mingw-cross-env libraries ${registerExtension} "$INSTDIR\openscad.exe" ".scad" "OpenSCAD_File" diff --git a/scripts/release-common.sh b/scripts/release-common.sh index ae856df..de14cb1 100755 --- a/scripts/release-common.sh +++ b/scripts/release-common.sh @@ -166,7 +166,14 @@ fi case $OS in LINXWIN) # dont use paralell builds, it can error-out on parser_yacc. + + # make main openscad.exe cd $DEPLOYDIR && make $TARGET + + # make console pipe-able openscad.com - see winconsole.pri for info + i686-pc-mingw32-qmake CONFIG+=winconsole ../openscad.pro + make + cd $OPENSCADDIR ;; *) @@ -232,6 +239,7 @@ case $OS in #package cp win32deps/* openscad-$VERSION cp $TARGET/openscad.exe openscad-$VERSION + cp $TARGET/openscad.com openscad-$VERSION rm -f openscad-$VERSION.zip "$ZIP" $ZIPARGS openscad-$VERSION.zip openscad-$VERSION rm -rf openscad-$VERSION @@ -242,6 +250,7 @@ case $OS in echo "Creating binary package" cd $DEPLOYDIR cp $TARGET/openscad.exe openscad-$VERSION + cp $TARGET/openscad.com openscad-$VERSION rm -f OpenSCAD-$VERSION.zip "$ZIP" $ZIPARGS OpenSCAD-$VERSION.zip openscad-$VERSION cd $OPENSCADDIR |