@ECHO OFF REM build.bat for the Windows 8 Table Example installer REM Copyright (C)2014-2016, Philip Munts, President, Munts AM Corp. REM REM Redistribution and use in source and binary forms, with or without REM modification, are permitted provided that the following conditions are met: REM REM * Redistributions of source code must retain the above copyright notice, REM this list of conditions and the following disclaimer. REM REM THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" REM AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE REM IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE REM ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE REM LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR REM CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF REM SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS REM INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN REM CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) REM ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE REM POSSIBILITY OF SUCH DAMAGE. REM 64-bit build machine IF EXIST "C:/Program Files (x86)" "C:/Program Files (x86)/Microsoft/Small Basic/SmallBasicCompiler.exe" tabletexample.sb IF EXIST "C:/Program Files (x86)" "C:/Program Files (x86)/Inno Setup 5/iscc.exe" /dAPPVERSION=1.0 tabletexample.iss REM 32-bit build machine IF NOT EXIST "C:/Program Files (x86)" "C:/Program Files/Microsoft/Small Basic/SmallBasicCompiler.exe" tabletexample.sb IF NOT EXIST "C:/Program Files (x86)" "C:/Program Files/Inno Setup 5/iscc.exe" /dAPPVERSION=1.0 tabletexample.iss