diff options
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 | 
