Sha256: 93802a55e0eb865349d851665793bb5eb82b23d63daa0c3282e718ffa4bdef9f
Contents?: true
Size: 891 Bytes
Versions: 25
Compression:
Stored size: 891 Bytes
Contents
@echo off ::Project UppercuT - http://projectuppercut.org if '%2' NEQ '' goto usage if '%3' NEQ '' goto usage if '%1' == '/?' goto usage if '%1' == '-?' goto usage if '%1' == '?' goto usage if '%1' == '/help' goto usage SET DIR=%~d0%~p0% SET NANT="%DIR%lib\Nant\nant.exe" SET build.config.settings="%DIR%settings\UppercuT.config" %NANT% %1 /f:.\build\default.build -D:build.config.settings=%build.config.settings% if %ERRORLEVEL% NEQ 0 goto errors SET file.merge.name="__REPLACE__" :: choose one: library, exe, winexe SET merge.target.type="library" %NANT% %1 /f:.\build\ilmerge.build -D:build.config.settings=%build.config.settings% -D:file.merge.name=%file.merge.name% -D:merge.target.type=%merge.target.type% if %ERRORLEVEL% NEQ 0 goto errors goto finish :usage echo. echo Usage: build.bat echo. goto finish :errors EXIT /B %ERRORLEVEL% :finish
Version data entries
25 entries across 25 versions & 1 rubygems